// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. [assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")] [assembly:System.CLSCompliantAttribute(true)] [assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")] [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")] [assembly:System.Reflection.AssemblyDefaultAliasAttribute("mscorlib.dll")] [assembly:System.Reflection.AssemblyDescriptionAttribute("mscorlib.dll")] [assembly:System.Reflection.AssemblyFileVersionAttribute("4.6.57.0")] [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.0")] [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")] [assembly:System.Reflection.AssemblyTitleAttribute("mscorlib.dll")] [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")] [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")] [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(System.Runtime.CompilerServices.CompilationRelaxations.NoStringInterning)] [assembly:System.Runtime.CompilerServices.DefaultDependencyAttribute(System.Runtime.CompilerServices.LoadHint.Always)] [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System, PublicKey=00000000000000000400000000000000")] [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Core, PublicKey=00000000000000000400000000000000")] [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")] [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Runtime.WindowsRuntime, PublicKey=00000000000000000400000000000000")] [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Runtime.WindowsRuntime.UI.Xaml, PublicKey=00000000000000000400000000000000")] [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Security, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")] [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)] [assembly:System.Runtime.CompilerServices.StringFreezingAttribute] [assembly:System.Runtime.InteropServices.ComCompatibleVersionAttribute(1, 0, 3300, 0)] [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)] [assembly:System.Runtime.InteropServices.GuidAttribute("BED7F4EA-1A96-11D2-8F08-00A0C9A6186D")] [assembly:System.Security.AllowPartiallyTrustedCallersAttribute] [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)] namespace Microsoft.Win32 { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class Registry { public static readonly Microsoft.Win32.RegistryKey ClassesRoot; public static readonly Microsoft.Win32.RegistryKey CurrentConfig; public static readonly Microsoft.Win32.RegistryKey CurrentUser; [System.ObsoleteAttribute("Use PerformanceData instead")] public static readonly Microsoft.Win32.RegistryKey DynData; public static readonly Microsoft.Win32.RegistryKey LocalMachine; public static readonly Microsoft.Win32.RegistryKey PerformanceData; public static readonly Microsoft.Win32.RegistryKey Users; public static object GetValue(string keyName, string valueName, object defaultValue) { throw null; } public static void SetValue(string keyName, string valueName, object value) { } public static void SetValue(string keyName, string valueName, object value, Microsoft.Win32.RegistryValueKind valueKind) { } } public enum RegistryHive { ClassesRoot = -2147483648, CurrentConfig = -2147483643, CurrentUser = -2147483647, DynData = -2147483642, LocalMachine = -2147483646, PerformanceData = -2147483644, Users = -2147483645, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class RegistryKey : System.MarshalByRefObject, System.IDisposable { internal RegistryKey() { } [System.MonoTODOAttribute("Not implemented in Unix")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.SafeHandles.SafeRegistryHandle Handle { get { throw null; } } public string Name { get { throw null; } } public int SubKeyCount { get { throw null; } } public int ValueCount { get { throw null; } } [System.MonoLimitationAttribute("View is ignored in Mono.")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryView View { get { throw null; } } public void Close() { } public Microsoft.Win32.RegistryKey CreateSubKey(string subkey) { throw null; } [System.MonoLimitationAttribute("permissionCheck is ignored in Mono")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck) { throw null; } [System.MonoLimitationAttribute("permissionCheck is ignored in Mono")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, Microsoft.Win32.RegistryOptions options) { throw null; } [System.MonoLimitationAttribute("permissionCheck and registrySecurity are ignored in Mono")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, Microsoft.Win32.RegistryOptions registryOptions, System.Security.AccessControl.RegistrySecurity registrySecurity) { throw null; } [System.MonoLimitationAttribute("permissionCheck and registrySecurity are ignored in Mono")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, System.Security.AccessControl.RegistrySecurity registrySecurity) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, bool writable) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, bool writable, Microsoft.Win32.RegistryOptions options) { throw null; } public void DeleteSubKey(string subkey) { } public void DeleteSubKey(string subkey, bool throwOnMissingSubKey) { } public void DeleteSubKeyTree(string subkey) { } public void DeleteSubKeyTree(string subkey, bool throwOnMissingSubKey) { } public void DeleteValue(string name) { } public void DeleteValue(string name, bool throwOnMissingValue) { } public void Dispose() { } public void Flush() { } [System.MonoTODOAttribute("Not implemented on unix")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public static Microsoft.Win32.RegistryKey FromHandle(Microsoft.Win32.SafeHandles.SafeRegistryHandle handle) { throw null; } [System.MonoTODOAttribute("Not implemented on unix")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public static Microsoft.Win32.RegistryKey FromHandle(Microsoft.Win32.SafeHandles.SafeRegistryHandle handle, Microsoft.Win32.RegistryView view) { throw null; } public System.Security.AccessControl.RegistrySecurity GetAccessControl() { throw null; } public System.Security.AccessControl.RegistrySecurity GetAccessControl(System.Security.AccessControl.AccessControlSections includeSections) { throw null; } public string[] GetSubKeyNames() { throw null; } public object GetValue(string name) { throw null; } public object GetValue(string name, object defaultValue) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public object GetValue(string name, object defaultValue, Microsoft.Win32.RegistryValueOptions options) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryValueKind GetValueKind(string name) { throw null; } public string[] GetValueNames() { throw null; } [System.MonoLimitationAttribute("View is ignored in Mono")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static Microsoft.Win32.RegistryKey OpenBaseKey(Microsoft.Win32.RegistryHive hKey, Microsoft.Win32.RegistryView view) { throw null; } [System.MonoTODOAttribute("Not implemented on unix")] public static Microsoft.Win32.RegistryKey OpenRemoteBaseKey(Microsoft.Win32.RegistryHive hKey, string machineName) { throw null; } [System.MonoTODOAttribute("Not implemented on unix")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static Microsoft.Win32.RegistryKey OpenRemoteBaseKey(Microsoft.Win32.RegistryHive hKey, string machineName, Microsoft.Win32.RegistryView view) { throw null; } public Microsoft.Win32.RegistryKey OpenSubKey(string name) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey OpenSubKey(string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck) { throw null; } [System.MonoLimitationAttribute("rights are ignored in Mono")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey OpenSubKey(string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, System.Security.AccessControl.RegistryRights rights) { throw null; } public Microsoft.Win32.RegistryKey OpenSubKey(string name, bool writable) { throw null; } [System.MonoLimitationAttribute("rights are ignored in Mono")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public Microsoft.Win32.RegistryKey OpenSubKey(string name, System.Security.AccessControl.RegistryRights rights) { throw null; } public void SetAccessControl(System.Security.AccessControl.RegistrySecurity registrySecurity) { } public void SetValue(string name, object value) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void SetValue(string name, object value, Microsoft.Win32.RegistryValueKind valueKind) { } public override string ToString() { throw null; } } public enum RegistryKeyPermissionCheck { Default = 0, ReadSubTree = 1, ReadWriteSubTree = 2, } [System.FlagsAttribute] public enum RegistryOptions { None = 0, Volatile = 1, } public enum RegistryValueKind { Binary = 3, DWord = 4, ExpandString = 2, MultiString = 7, None = -1, QWord = 11, String = 1, Unknown = 0, } [System.FlagsAttribute] public enum RegistryValueOptions { DoNotExpandEnvironmentNames = 1, None = 0, } public enum RegistryView { Default = 0, Registry32 = 512, Registry64 = 256, } } namespace Microsoft.Win32.SafeHandles { [System.Security.SecurityCriticalAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, UnmanagedCode=true)] public abstract partial class CriticalHandleMinusOneIsInvalid : System.Runtime.InteropServices.CriticalHandle { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] protected CriticalHandleMinusOneIsInvalid() : base (default(System.IntPtr)) { } public override bool IsInvalid { [System.Security.SecurityCriticalAttribute]get { throw null; } } } [System.Security.SecurityCriticalAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, UnmanagedCode=true)] public abstract partial class CriticalHandleZeroOrMinusOneIsInvalid : System.Runtime.InteropServices.CriticalHandle { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] protected CriticalHandleZeroOrMinusOneIsInvalid() : base (default(System.IntPtr)) { } public override bool IsInvalid { [System.Security.SecurityCriticalAttribute]get { throw null; } } } [System.Security.SecurityCriticalAttribute] public sealed partial class SafeAccessTokenHandle : System.Runtime.InteropServices.SafeHandle { public SafeAccessTokenHandle(System.IntPtr handle) : base (default(System.IntPtr), default(bool)) { } public static Microsoft.Win32.SafeHandles.SafeAccessTokenHandle InvalidHandle { [System.Security.SecurityCriticalAttribute]get { throw null; } } public override bool IsInvalid { [System.Security.SecurityCriticalAttribute]get { throw null; } } [System.Security.SecurityCriticalAttribute] protected override bool ReleaseHandle() { throw null; } } [System.Security.SecurityCriticalAttribute] public sealed partial class SafeFileHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid { public SafeFileHandle(System.IntPtr preexistingHandle, bool ownsHandle) : base (default(bool)) { } [System.Security.SecurityCriticalAttribute] protected override bool ReleaseHandle() { throw null; } } [System.Security.SecurityCriticalAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, UnmanagedCode=true)] public abstract partial class SafeHandleMinusOneIsInvalid : System.Runtime.InteropServices.SafeHandle { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] protected SafeHandleMinusOneIsInvalid(bool ownsHandle) : base (default(System.IntPtr), default(bool)) { } public override bool IsInvalid { [System.Security.SecurityCriticalAttribute]get { throw null; } } } [System.Security.SecurityCriticalAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, UnmanagedCode=true)] public abstract partial class SafeHandleZeroOrMinusOneIsInvalid : System.Runtime.InteropServices.SafeHandle { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] protected SafeHandleZeroOrMinusOneIsInvalid(bool ownsHandle) : base (default(System.IntPtr), default(bool)) { } public override bool IsInvalid { [System.Security.SecurityCriticalAttribute]get { throw null; } } } [System.Security.SecurityCriticalAttribute] public sealed partial class SafeRegistryHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid { [System.Security.SecurityCriticalAttribute] public SafeRegistryHandle(System.IntPtr preexistingHandle, bool ownsHandle) : base (default(bool)) { } [System.Security.SecurityCriticalAttribute] protected override bool ReleaseHandle() { throw null; } } [System.Security.SecurityCriticalAttribute] public sealed partial class SafeWaitHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public SafeWaitHandle(System.IntPtr existingHandle, bool ownsHandle) : base (default(bool)) { } [System.Security.SecurityCriticalAttribute] protected override bool ReleaseHandle() { throw null; } } } namespace System { [System.SerializableAttribute] public partial class AccessViolationException : System.SystemException { public AccessViolationException() { } protected AccessViolationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public AccessViolationException(string message) { } public AccessViolationException(string message, System.Exception innerException) { } } public delegate void Action(); public delegate void Action(T obj); public delegate void Action(T1 arg1, T2 arg2); public delegate void Action(T1 arg1, T2 arg2, T3 arg3); public delegate void Action(T1 arg1, T2 arg2, T3 arg3, T4 arg4); public delegate void Action(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5); public delegate void Action(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6); public delegate void Action(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7); public delegate void Action(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8); [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.SerializableAttribute] public sealed partial class ActivationContext : System.IDisposable, System.Runtime.Serialization.ISerializable { internal ActivationContext() { } public System.ActivationContext.ContextForm Form { get { throw null; } } public System.ApplicationIdentity Identity { get { throw null; } } [System.MonoTODOAttribute("Missing validation")] public static System.ActivationContext CreatePartialActivationContext(System.ApplicationIdentity identity) { throw null; } [System.MonoTODOAttribute("Missing validation")] public static System.ActivationContext CreatePartialActivationContext(System.ApplicationIdentity identity, string[] manifestPaths) { throw null; } public void Dispose() { } ~ActivationContext() { } [System.MonoTODOAttribute("Missing serialization support")] void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public enum ContextForm { Loose = 0, StoreBounded = 1, } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._Activator))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class Activator : System.Runtime.InteropServices._Activator { internal Activator() { } public static System.Runtime.Remoting.ObjectHandle CreateComInstanceFrom(string assemblyName, string typeName) { throw null; } public static System.Runtime.Remoting.ObjectHandle CreateComInstanceFrom(string assemblyName, string typeName, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstance(System.AppDomain domain, string assemblyName, string typeName) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstance(System.AppDomain domain, string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.ObsoleteAttribute("Methods which use evidence to sandbox are obsolete and will be removed in a future release of the .NET Framework. Please use an overload of CreateInstance which does not take an Evidence parameter. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] [System.Security.SecurityCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstance(System.AppDomain domain, string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.ObsoleteAttribute("Methods which use evidence to sandbox are obsolete and will be removed in a future release of the .NET Framework. Please use an overload of CreateInstance which does not take an Evidence parameter. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] [System.Security.SecuritySafeCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityInfo) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, object[] activationAttributes) { throw null; } public static object CreateInstance(System.Type type) { throw null; } public static object CreateInstance(System.Type type, bool nonPublic) { throw null; } public static object CreateInstance(System.Type type, params object[] args) { throw null; } public static object CreateInstance(System.Type type, object[] args, object[] activationAttributes) { throw null; } public static object CreateInstance(System.Type type, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static object CreateInstance(System.Type type, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(System.AppDomain domain, string assemblyFile, string typeName) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(System.AppDomain domain, string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.ObsoleteAttribute("Methods which use Evidence to sandbox are obsolete and will be removed in a future release of the .NET Framework. Please use an overload of CreateInstanceFrom which does not take an Evidence parameter. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] [System.Security.SecurityCriticalAttribute] public static System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(System.AppDomain domain, string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes) { throw null; } public static System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName) { throw null; } public static System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.ObsoleteAttribute("Methods which use evidence to sandbox are obsolete and will be removed in a future release of the .NET Framework. Please use an overload of CreateInstanceFrom which does not take an Evidence parameter. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] public static System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityInfo) { throw null; } public static System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, object[] activationAttributes) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static T CreateInstance() { throw null; } [System.Security.SecurityCriticalAttribute] public static object GetObject(System.Type type, string url) { throw null; } [System.Security.SecurityCriticalAttribute] public static object GetObject(System.Type type, string url, object state) { throw null; } void System.Runtime.InteropServices._Activator.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._Activator.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._Activator.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._Activator.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {InnerExceptionCount}")] [System.SerializableAttribute] public partial class AggregateException : System.Exception { public AggregateException() { } public AggregateException(System.Collections.Generic.IEnumerable innerExceptions) { } public AggregateException(params System.Exception[] innerExceptions) { } protected AggregateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public AggregateException(string message) { } public AggregateException(string message, System.Collections.Generic.IEnumerable innerExceptions) { } public AggregateException(string message, System.Exception innerException) { } public AggregateException(string message, params System.Exception[] innerExceptions) { } public System.Collections.ObjectModel.ReadOnlyCollection InnerExceptions { get { throw null; } } public override string Message { get { throw null; } } public System.AggregateException Flatten() { throw null; } public override System.Exception GetBaseException() { throw null; } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public void Handle(System.Func predicate) { } public override string ToString() { throw null; } } public static partial class AppContext { public static string BaseDirectory { get { throw null; } } public static string TargetFrameworkName { get { throw null; } } public static object GetData(string name) { throw null; } public static void SetSwitch(string switchName, bool isEnabled) { } public static bool TryGetSwitch(string switchName, out bool isEnabled) { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System._AppDomain))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class AppDomain : System.MarshalByRefObject, System.Security.IEvidenceFactory, System._AppDomain { internal AppDomain() { } public System.ActivationContext ActivationContext { get { throw null; } } public System.ApplicationIdentity ApplicationIdentity { get { throw null; } } [System.MonoTODOAttribute] public System.Security.Policy.ApplicationTrust ApplicationTrust { get { throw null; } } public string BaseDirectory { get { throw null; } } public static System.AppDomain CurrentDomain { get { throw null; } } public System.AppDomainManager DomainManager { get { throw null; } } public string DynamicDirectory { get { throw null; } } public System.Security.Policy.Evidence Evidence { get { throw null; } } public string FriendlyName { get { throw null; } } public int Id { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } [System.MonoTODOAttribute] public bool IsFullyTrusted { get { throw null; } } [System.MonoTODOAttribute] public bool IsHomogenous { get { throw null; } } [System.MonoTODOAttribute("Currently always returns false")] public static bool MonitoringIsEnabled { get { throw null; } set { } } [System.MonoTODOAttribute] public long MonitoringSurvivedMemorySize { get { throw null; } } [System.MonoTODOAttribute] public static long MonitoringSurvivedProcessMemorySize { get { throw null; } } [System.MonoTODOAttribute] public long MonitoringTotalAllocatedMemorySize { get { throw null; } } [System.MonoTODOAttribute] public System.TimeSpan MonitoringTotalProcessorTime { get { throw null; } } public System.Security.PermissionSet PermissionSet { get { throw null; } } public string RelativeSearchPath { get { throw null; } } public System.AppDomainSetup SetupInformation { get { throw null; } } public bool ShadowCopyFiles { get { throw null; } } public event System.AssemblyLoadEventHandler AssemblyLoad { add { } remove { } } public event System.ResolveEventHandler AssemblyResolve { add { } remove { } } public event System.EventHandler DomainUnload { add { } remove { } } public event System.EventHandler FirstChanceException { add { } remove { } } public event System.EventHandler ProcessExit { add { } remove { } } public event System.ResolveEventHandler ReflectionOnlyAssemblyResolve { add { } remove { } } public event System.ResolveEventHandler ResourceResolve { add { } remove { } } public event System.ResolveEventHandler TypeResolve { add { } remove { } } public event System.UnhandledExceptionEventHandler UnhandledException { add { } remove { } } [System.ObsoleteAttribute("AppDomain.AppendPrivatePath has been deprecated. Please investigate the use of AppDomainSetup.PrivateBinPath instead.")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void AppendPrivatePath(string path) { } [System.MonoTODOAttribute("This routine only returns the parameter currently")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public string ApplyPolicy(string assemblyName) { throw null; } [System.ObsoleteAttribute("AppDomain.ClearPrivatePath has been deprecated. Please investigate the use of AppDomainSetup.PrivateBinPath instead.")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void ClearPrivatePath() { } [System.ObsoleteAttribute("Use AppDomainSetup.ShadowCopyDirectories")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void ClearShadowCopyPath() { } public System.Runtime.Remoting.ObjectHandle CreateComInstanceFrom(string assemblyName, string typeName) { throw null; } public System.Runtime.Remoting.ObjectHandle CreateComInstanceFrom(string assemblyFile, string typeName, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm) { throw null; } public static System.AppDomain CreateDomain(string friendlyName) { throw null; } public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo) { throw null; } [System.MonoLimitationAttribute("Currently it does not allow the setup in the other domain")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlAppDomain=true)] public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo, System.AppDomainSetup info) { throw null; } public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo, System.AppDomainSetup info, System.Security.PermissionSet grantSet, params System.Security.Policy.StrongName[] fullTrustAssemblies) { throw null; } public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo, string appBasePath, string appRelativeSearchPath, bool shadowCopyFiles) { throw null; } public static System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo, string appBasePath, string appRelativeSearchPath, bool shadowCopyFiles, System.AppDomainInitializer adInit, string[] adInitArgs) { throw null; } public System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName) { throw null; } public System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes) { throw null; } public System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, object[] activationAttributes) { throw null; } public object CreateInstanceAndUnwrap(string assemblyName, string typeName) { throw null; } public object CreateInstanceAndUnwrap(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public object CreateInstanceAndUnwrap(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes) { throw null; } public object CreateInstanceAndUnwrap(string assemblyName, string typeName, object[] activationAttributes) { throw null; } public System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName) { throw null; } public System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes) { throw null; } public System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, object[] activationAttributes) { throw null; } public object CreateInstanceFromAndUnwrap(string assemblyName, string typeName) { throw null; } public object CreateInstanceFromAndUnwrap(string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public object CreateInstanceFromAndUnwrap(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes) { throw null; } public object CreateInstanceFromAndUnwrap(string assemblyName, string typeName, object[] activationAttributes) { throw null; } public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access) { throw null; } public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Collections.Generic.IEnumerable assemblyAttributes) { throw null; } [System.MonoLimitationAttribute("The argument securityContextSource is ignored")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Collections.Generic.IEnumerable assemblyAttributes, System.Security.SecurityContextSource securityContextSource) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Security.Policy.Evidence evidence) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Security.Policy.Evidence evidence, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions) { throw null; } public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir) { throw null; } public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, bool isSynchronized, System.Collections.Generic.IEnumerable assemblyAttributes) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.Policy.Evidence evidence) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.Policy.Evidence evidence, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.Policy.Evidence evidence, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions, bool isSynchronized) { throw null; } [System.ObsoleteAttribute("Declarative security for assembly level is no longer enforced")] public System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.Policy.Evidence evidence, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions, bool isSynchronized, System.Collections.Generic.IEnumerable assemblyAttributes) { throw null; } public void DoCallBack(System.CrossAppDomainDelegate callBackDelegate) { } public int ExecuteAssembly(string assemblyFile) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public int ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public int ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity, string[] args) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public int ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity, string[] args, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm) { throw null; } public int ExecuteAssembly(string assemblyFile, string[] args) { throw null; } public int ExecuteAssembly(string assemblyFile, string[] args, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public int ExecuteAssemblyByName(System.Reflection.AssemblyName assemblyName, System.Security.Policy.Evidence assemblySecurity, params string[] args) { throw null; } public int ExecuteAssemblyByName(System.Reflection.AssemblyName assemblyName, params string[] args) { throw null; } public int ExecuteAssemblyByName(string assemblyName) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public int ExecuteAssemblyByName(string assemblyName, System.Security.Policy.Evidence assemblySecurity) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public int ExecuteAssemblyByName(string assemblyName, System.Security.Policy.Evidence assemblySecurity, params string[] args) { throw null; } public int ExecuteAssemblyByName(string assemblyName, params string[] args) { throw null; } public System.Reflection.Assembly[] GetAssemblies() { throw null; } [System.ObsoleteAttribute("AppDomain.GetCurrentThreadId has been deprecated because it does not provide a stable Id when managed threads are running on fibers (aka lightweight threads). To get a stable identifier for a managed thread, use the ManagedThreadId property on Thread.'")] public static int GetCurrentThreadId() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public object GetData(string name) { throw null; } public new System.Type GetType() { throw null; } public override object InitializeLifetimeService() { throw null; } public System.Nullable IsCompatibilitySwitchSet(string value) { throw null; } public bool IsDefaultAppDomain() { throw null; } public bool IsFinalizingForUnload() { throw null; } public System.Reflection.Assembly Load(byte[] rawAssembly) { throw null; } public System.Reflection.Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore) { throw null; } [System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public System.Reflection.Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore, System.Security.Policy.Evidence securityEvidence) { throw null; } public System.Reflection.Assembly Load(System.Reflection.AssemblyName assemblyRef) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public System.Reflection.Assembly Load(System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public System.Reflection.Assembly Load(string assemblyString) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.ObsoleteAttribute("Use an overload that does not take an Evidence parameter")] public System.Reflection.Assembly Load(string assemblyString, System.Security.Policy.Evidence assemblySecurity) { throw null; } public System.Reflection.Assembly[] ReflectionOnlyGetAssemblies() { throw null; } [System.ObsoleteAttribute("AppDomain policy levels are obsolete")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)] public void SetAppDomainPolicy(System.Security.Policy.PolicyLevel domainPolicy) { } [System.ObsoleteAttribute("Use AppDomainSetup.SetCachePath")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void SetCachePath(string path) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void SetData(string name, object data) { } [System.MonoLimitationAttribute("The permission field is ignored")] public void SetData(string name, object data, System.Security.IPermission permission) { } [System.ObsoleteAttribute("Use AppDomainSetup.DynamicBase")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void SetDynamicBase(string path) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public void SetPrincipalPolicy(System.Security.Principal.PrincipalPolicy policy) { } [System.ObsoleteAttribute("Use AppDomainSetup.ShadowCopyFiles")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void SetShadowCopyFiles() { } [System.ObsoleteAttribute("Use AppDomainSetup.ShadowCopyDirectories")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ControlAppDomain=true)] public void SetShadowCopyPath(string path) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public void SetThreadPrincipal(System.Security.Principal.IPrincipal principal) { } void System._AppDomain.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System._AppDomain.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System._AppDomain.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System._AppDomain.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public override string ToString() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptAppDomain, System.Runtime.ConstrainedExecution.Cer.MayFail)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlAppDomain=true)] public static void Unload(System.AppDomain domain) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public delegate void AppDomainInitializer(string[] args); [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Infrastructure=true)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Infrastructure=true)] public partial class AppDomainManager : System.MarshalByRefObject { public AppDomainManager() { } public virtual System.Runtime.Hosting.ApplicationActivator ApplicationActivator { get { throw null; } } public virtual System.Reflection.Assembly EntryAssembly { get { throw null; } } [System.MonoTODOAttribute] public virtual System.Threading.HostExecutionContextManager HostExecutionContextManager { get { throw null; } } public virtual System.Security.HostSecurityManager HostSecurityManager { get { throw null; } } public System.AppDomainManagerInitializationOptions InitializationFlags { get { throw null; } set { } } public virtual bool CheckSecuritySettings(System.Security.SecurityState state) { throw null; } public virtual System.AppDomain CreateDomain(string friendlyName, System.Security.Policy.Evidence securityInfo, System.AppDomainSetup appDomainInfo) { throw null; } protected static System.AppDomain CreateDomainHelper(string friendlyName, System.Security.Policy.Evidence securityInfo, System.AppDomainSetup appDomainInfo) { throw null; } public virtual void InitializeNewDomain(System.AppDomainSetup appDomainInfo) { } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum AppDomainManagerInitializationOptions { None = 0, RegisterWithHost = 1, } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class AppDomainSetup : System.IAppDomainSetup { public AppDomainSetup() { } public AppDomainSetup(System.ActivationContext activationContext) { } public AppDomainSetup(System.Runtime.Hosting.ActivationArguments activationArguments) { } public System.Runtime.Hosting.ActivationArguments ActivationArguments { get { throw null; } set { } } [System.MonoLimitationAttribute("it needs to be invoked within the created domain")] public System.AppDomainInitializer AppDomainInitializer { get { throw null; } set { } } [System.MonoLimitationAttribute("it needs to be used to invoke the initializer within the created domain")] public string[] AppDomainInitializerArguments { get { throw null; } set { } } public string ApplicationBase { get { throw null; } set { } } public string ApplicationName { get { throw null; } set { } } [System.MonoNotSupportedAttribute("This property exists but not considered.")] public System.Security.Policy.ApplicationTrust ApplicationTrust { get { throw null; } set { } } public string CachePath { get { throw null; } set { } } public string ConfigurationFile { get { throw null; } set { } } [System.MonoNotSupportedAttribute("This property exists but not considered.")] public bool DisallowApplicationBaseProbing { get { throw null; } set { } } public bool DisallowBindingRedirects { get { throw null; } set { } } public bool DisallowCodeDownload { get { throw null; } set { } } public bool DisallowPublisherPolicy { get { throw null; } set { } } public string DynamicBase { get { throw null; } set { } } public string LicenseFile { get { throw null; } set { } } [System.MonoLimitationAttribute("In Mono this is controlled by the --share-code flag")] public System.LoaderOptimization LoaderOptimization { get { throw null; } set { } } public string PrivateBinPath { get { throw null; } set { } } public string PrivateBinPathProbe { get { throw null; } set { } } public string ShadowCopyDirectories { get { throw null; } set { } } public string ShadowCopyFiles { get { throw null; } set { } } public string TargetFrameworkName { get { throw null; } set { } } [System.MonoNotSupportedAttribute("This method exists but not considered.")] public byte[] GetConfigurationBytes() { throw null; } [System.MonoTODOAttribute("not implemented, does not throw because it's used in testing moonlight")] public void SetCompatibilitySwitches(System.Collections.Generic.IEnumerable switches) { } [System.MonoNotSupportedAttribute("This method exists but not considered.")] public void SetConfigurationBytes(byte[] value) { } } [System.SerializableAttribute] public partial class AppDomainUnloadedException : System.SystemException { public AppDomainUnloadedException() { } protected AppDomainUnloadedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public AppDomainUnloadedException(string message) { } public AppDomainUnloadedException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public partial class ApplicationException : System.Exception { public ApplicationException() { } protected ApplicationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ApplicationException(string message) { } public ApplicationException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public sealed partial class ApplicationId { public ApplicationId(byte[] publicKeyToken, string name, System.Version version, string processorArchitecture, string culture) { } public string Culture { get { throw null; } } public string Name { get { throw null; } } public string ProcessorArchitecture { get { throw null; } } public byte[] PublicKeyToken { get { throw null; } } public System.Version Version { get { throw null; } } public System.ApplicationId Copy() { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.SerializableAttribute] public sealed partial class ApplicationIdentity : System.Runtime.Serialization.ISerializable { public ApplicationIdentity(string applicationIdentityFullName) { } public string CodeBase { get { throw null; } } public string FullName { get { throw null; } } [System.MonoTODOAttribute("Missing serialization")] void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } public partial struct ArgIterator { private int _dummyPrimitive; public ArgIterator(System.RuntimeArgumentHandle arglist) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe ArgIterator(System.RuntimeArgumentHandle arglist, void* ptr) { throw null; } public void End() { } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } [System.CLSCompliantAttribute(false)] public System.TypedReference GetNextArg() { throw null; } [System.CLSCompliantAttribute(false)] public System.TypedReference GetNextArg(System.RuntimeTypeHandle rth) { throw null; } public System.RuntimeTypeHandle GetNextArgType() { throw null; } public int GetRemainingCount() { throw null; } } [System.SerializableAttribute] public partial class ArgumentException : System.SystemException { public ArgumentException() { } protected ArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ArgumentException(string message) { } public ArgumentException(string message, System.Exception innerException) { } public ArgumentException(string message, string paramName) { } public ArgumentException(string message, string paramName, System.Exception innerException) { } public override string Message { get { throw null; } } public virtual string ParamName { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public partial class ArgumentNullException : System.ArgumentException { public ArgumentNullException() { } protected ArgumentNullException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ArgumentNullException(string paramName) { } public ArgumentNullException(string message, System.Exception innerException) { } public ArgumentNullException(string paramName, string message) { } } [System.SerializableAttribute] public partial class ArgumentOutOfRangeException : System.ArgumentException { public ArgumentOutOfRangeException() { } protected ArgumentOutOfRangeException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ArgumentOutOfRangeException(string paramName) { } public ArgumentOutOfRangeException(string message, System.Exception innerException) { } public ArgumentOutOfRangeException(string paramName, object actualValue, string message) { } public ArgumentOutOfRangeException(string paramName, string message) { } public virtual object ActualValue { get { throw null; } } public override string Message { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public partial class ArithmeticException : System.SystemException { public ArithmeticException() { } protected ArithmeticException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ArithmeticException(string message) { } public ArithmeticException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public abstract partial class Array : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.ICloneable { internal Array() { } public bool IsFixedSize { get { throw null; } } public bool IsReadOnly { get { throw null; } } public bool IsSynchronized { get { throw null; } } public int Length { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public long LongLength { get { throw null; } } public int Rank { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public object SyncRoot { get { throw null; } } int System.Collections.ICollection.Count { get { throw null; } } bool System.Collections.IList.IsReadOnly { get { throw null; } } object System.Collections.IList.this[int index] { get { throw null; } set { } } public static System.Collections.ObjectModel.ReadOnlyCollection AsReadOnly(T[] array) { throw null; } public static int BinarySearch(System.Array array, int index, int length, object value) { throw null; } public static int BinarySearch(System.Array array, int index, int length, object value, System.Collections.IComparer comparer) { throw null; } public static int BinarySearch(System.Array array, object value) { throw null; } public static int BinarySearch(System.Array array, object value, System.Collections.IComparer comparer) { throw null; } public static int BinarySearch(T[] array, int index, int length, T value) { throw null; } public static int BinarySearch(T[] array, int index, int length, T value, System.Collections.Generic.IComparer comparer) { throw null; } public static int BinarySearch(T[] array, T value) { throw null; } public static int BinarySearch(T[] array, T value, System.Collections.Generic.IComparer comparer) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Clear(System.Array array, int index, int length) { } public object Clone() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void ConstrainedCopy(System.Array sourceArray, int sourceIndex, System.Array destinationArray, int destinationIndex, int length) { } public static TOutput[] ConvertAll(TInput[] array, System.Converter converter) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Copy(System.Array sourceArray, System.Array destinationArray, int length) { } public static void Copy(System.Array sourceArray, System.Array destinationArray, long length) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Copy(System.Array sourceArray, int sourceIndex, System.Array destinationArray, int destinationIndex, int length) { } public static void Copy(System.Array sourceArray, long sourceIndex, System.Array destinationArray, long destinationIndex, long length) { } public void CopyTo(System.Array array, int index) { } public void CopyTo(System.Array array, long index) { } public static System.Array CreateInstance(System.Type elementType, int length) { throw null; } public static System.Array CreateInstance(System.Type elementType, int length1, int length2) { throw null; } public static System.Array CreateInstance(System.Type elementType, int length1, int length2, int length3) { throw null; } public static System.Array CreateInstance(System.Type elementType, params int[] lengths) { throw null; } public static System.Array CreateInstance(System.Type elementType, int[] lengths, int[] lowerBounds) { throw null; } public static System.Array CreateInstance(System.Type elementType, params long[] lengths) { throw null; } public static T[] Empty() { throw null; } public static bool Exists(T[] array, System.Predicate match) { throw null; } public static void Fill(T[] array, T value) { } public static void Fill(T[] array, T value, int startIndex, int count) { } public static T[] FindAll(T[] array, System.Predicate match) { throw null; } public static int FindIndex(T[] array, int startIndex, int count, System.Predicate match) { throw null; } public static int FindIndex(T[] array, int startIndex, System.Predicate match) { throw null; } public static int FindIndex(T[] array, System.Predicate match) { throw null; } public static int FindLastIndex(T[] array, int startIndex, int count, System.Predicate match) { throw null; } public static int FindLastIndex(T[] array, int startIndex, System.Predicate match) { throw null; } public static int FindLastIndex(T[] array, System.Predicate match) { throw null; } public static T FindLast(T[] array, System.Predicate match) { throw null; } public static T Find(T[] array, System.Predicate match) { throw null; } public static void ForEach(T[] array, System.Action action) { } public System.Collections.IEnumerator GetEnumerator() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public int GetLength(int dimension) { throw null; } public long GetLongLength(int dimension) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public int GetLowerBound(int dimension) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public int GetUpperBound(int dimension) { throw null; } public object GetValue(int index) { throw null; } public object GetValue(int index1, int index2) { throw null; } public object GetValue(int index1, int index2, int index3) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public object GetValue(params int[] indices) { throw null; } public object GetValue(long index) { throw null; } public object GetValue(long index1, long index2) { throw null; } public object GetValue(long index1, long index2, long index3) { throw null; } public object GetValue(params long[] indices) { throw null; } public static int IndexOf(System.Array array, object value) { throw null; } public static int IndexOf(System.Array array, object value, int startIndex) { throw null; } public static int IndexOf(System.Array array, object value, int startIndex, int count) { throw null; } public static int IndexOf(T[] array, T value) { throw null; } public static int IndexOf(T[] array, T value, int startIndex) { throw null; } public static int IndexOf(T[] array, T value, int startIndex, int count) { throw null; } public void Initialize() { } public static int LastIndexOf(System.Array array, object value) { throw null; } public static int LastIndexOf(System.Array array, object value, int startIndex) { throw null; } public static int LastIndexOf(System.Array array, object value, int startIndex, int count) { throw null; } public static int LastIndexOf(T[] array, T value) { throw null; } public static int LastIndexOf(T[] array, T value, int startIndex) { throw null; } public static int LastIndexOf(T[] array, T value, int startIndex, int count) { throw null; } public static void Resize(ref T[] array, int newSize) { } public static void Reverse(System.Array array) { } public static void Reverse(System.Array array, int index, int length) { } public static void Reverse(T[] array) { } public static void Reverse(T[] array, int index, int length) { } public void SetValue(object value, int index) { } public void SetValue(object value, int index1, int index2) { } public void SetValue(object value, int index1, int index2, int index3) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public void SetValue(object value, params int[] indices) { } public void SetValue(object value, long index) { } public void SetValue(object value, long index1, long index2) { } public void SetValue(object value, long index1, long index2, long index3) { } public void SetValue(object value, params long[] indices) { } public static void Sort(System.Array array) { } public static void Sort(System.Array keys, System.Array items) { } public static void Sort(System.Array keys, System.Array items, System.Collections.IComparer comparer) { } public static void Sort(System.Array keys, System.Array items, int index, int length) { } public static void Sort(System.Array keys, System.Array items, int index, int length, System.Collections.IComparer comparer) { } public static void Sort(System.Array array, System.Collections.IComparer comparer) { } public static void Sort(System.Array array, int index, int length) { } public static void Sort(System.Array array, int index, int length, System.Collections.IComparer comparer) { } public static void Sort(T[] array) { } public static void Sort(T[] array, System.Collections.Generic.IComparer comparer) { } public static void Sort(T[] array, System.Comparison comparison) { } public static void Sort(T[] array, int index, int length) { } public static void Sort(T[] array, int index, int length, System.Collections.Generic.IComparer comparer) { } public static void Sort(TKey[] keys, TValue[] items) { } public static void Sort(TKey[] keys, TValue[] items, System.Collections.Generic.IComparer comparer) { } public static void Sort(TKey[] keys, TValue[] items, int index, int length) { } public static void Sort(TKey[] keys, TValue[] items, int index, int length, System.Collections.Generic.IComparer comparer) { } int System.Collections.IList.Add(object value) { throw null; } void System.Collections.IList.Clear() { } bool System.Collections.IList.Contains(object value) { throw null; } int System.Collections.IList.IndexOf(object value) { throw null; } void System.Collections.IList.Insert(int index, object value) { } void System.Collections.IList.Remove(object value) { } void System.Collections.IList.RemoveAt(int index) { } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } public static bool TrueForAll(T[] array, System.Predicate match) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ArraySegment : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.IEnumerable { private readonly T[] _array; private readonly object _dummy; private readonly int _dummyPrimitive; public ArraySegment(T[] array) { throw null; } public ArraySegment(T[] array, int offset, int count) { throw null; } public T[] Array { get { throw null; } } public int Count { get { throw null; } } public static System.ArraySegment Empty { get { throw null; } } public T this[int index] { get { throw null; } set { } } public int Offset { get { throw null; } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } T System.Collections.Generic.IList.this[int index] { get { throw null; } set { } } T System.Collections.Generic.IReadOnlyList.this[int index] { get { throw null; } } public void CopyTo(System.ArraySegment destination) { } public void CopyTo(T[] destination) { } public void CopyTo(T[] destination, int destinationIndex) { } public bool Equals(System.ArraySegment obj) { throw null; } public override bool Equals(object obj) { throw null; } public System.ArraySegment.Enumerator GetEnumerator() { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.ArraySegment a, System.ArraySegment b) { throw null; } public static implicit operator System.ArraySegment (T[] array) { throw null; } public static bool operator !=(System.ArraySegment a, System.ArraySegment b) { throw null; } public System.ArraySegment Slice(int index) { throw null; } public System.ArraySegment Slice(int index, int count) { throw null; } void System.Collections.Generic.ICollection.Add(T item) { } void System.Collections.Generic.ICollection.Clear() { } bool System.Collections.Generic.ICollection.Contains(T item) { throw null; } bool System.Collections.Generic.ICollection.Remove(T item) { throw null; } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } int System.Collections.Generic.IList.IndexOf(T item) { throw null; } void System.Collections.Generic.IList.Insert(int index, T item) { } void System.Collections.Generic.IList.RemoveAt(int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public T[] ToArray() { throw null; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { private readonly T[] _array; private object _dummy; private int _dummyPrimitive; public T Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } void System.Collections.IEnumerator.Reset() { } } } [System.SerializableAttribute] public partial class ArrayTypeMismatchException : System.SystemException { public ArrayTypeMismatchException() { } protected ArrayTypeMismatchException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ArrayTypeMismatchException(string message) { } public ArrayTypeMismatchException(string message, System.Exception innerException) { } } public partial class AssemblyLoadEventArgs : System.EventArgs { public AssemblyLoadEventArgs(System.Reflection.Assembly loadedAssembly) { } public System.Reflection.Assembly LoadedAssembly { get { throw null; } } } [System.SerializableAttribute] public delegate void AssemblyLoadEventHandler(object sender, System.AssemblyLoadEventArgs args); [System.SerializableAttribute] public delegate void AsyncCallback(System.IAsyncResult ar); [System.AttributeUsageAttribute(System.AttributeTargets.All, Inherited=true, AllowMultiple=false)] [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._Attribute))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class Attribute : System.Runtime.InteropServices._Attribute { protected Attribute() { } public virtual object TypeId { get { throw null; } } [System.Security.SecuritySafeCriticalAttribute] public override bool Equals(object obj) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.Assembly element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.Assembly element, System.Type attributeType, bool inherit) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.MemberInfo element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.MemberInfo element, System.Type attributeType, bool inherit) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.Module element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.Module element, System.Type attributeType, bool inherit) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.ParameterInfo element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(System.Reflection.ParameterInfo element, System.Type attributeType, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Assembly element) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Assembly element, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Assembly element, System.Type attributeType) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Assembly element, System.Type attributeType, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.MemberInfo element) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.MemberInfo element, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.MemberInfo element, System.Type type) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.MemberInfo element, System.Type type, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Module element) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Module element, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Module element, System.Type attributeType) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.Module element, System.Type attributeType, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.ParameterInfo element) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.ParameterInfo element, bool inherit) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.ParameterInfo element, System.Type attributeType) { throw null; } public static System.Attribute[] GetCustomAttributes(System.Reflection.ParameterInfo element, System.Type attributeType, bool inherit) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public override int GetHashCode() { throw null; } public virtual bool IsDefaultAttribute() { throw null; } public static bool IsDefined(System.Reflection.Assembly element, System.Type attributeType) { throw null; } public static bool IsDefined(System.Reflection.Assembly element, System.Type attributeType, bool inherit) { throw null; } public static bool IsDefined(System.Reflection.MemberInfo element, System.Type attributeType) { throw null; } public static bool IsDefined(System.Reflection.MemberInfo element, System.Type attributeType, bool inherit) { throw null; } public static bool IsDefined(System.Reflection.Module element, System.Type attributeType) { throw null; } public static bool IsDefined(System.Reflection.Module element, System.Type attributeType, bool inherit) { throw null; } public static bool IsDefined(System.Reflection.ParameterInfo element, System.Type attributeType) { throw null; } public static bool IsDefined(System.Reflection.ParameterInfo element, System.Type attributeType, bool inherit) { throw null; } public virtual bool Match(object obj) { throw null; } void System.Runtime.InteropServices._Attribute.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._Attribute.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._Attribute.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._Attribute.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.FlagsAttribute] public enum AttributeTargets { All = 32767, Assembly = 1, Class = 4, Constructor = 32, Delegate = 4096, Enum = 16, Event = 512, Field = 256, GenericParameter = 16384, Interface = 1024, Method = 64, Module = 2, Parameter = 2048, Property = 128, ReturnValue = 8192, Struct = 8, } [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)] [System.SerializableAttribute] public sealed partial class AttributeUsageAttribute : System.Attribute { public AttributeUsageAttribute(System.AttributeTargets validOn) { } public bool AllowMultiple { get { throw null; } set { } } public bool Inherited { get { throw null; } set { } } public System.AttributeTargets ValidOn { get { throw null; } } } [System.SerializableAttribute] public partial class BadImageFormatException : System.SystemException { public BadImageFormatException() { } protected BadImageFormatException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public BadImageFormatException(string message) { } public BadImageFormatException(string message, System.Exception inner) { } public BadImageFormatException(string message, string fileName) { } public BadImageFormatException(string message, string fileName, System.Exception inner) { } public string FileName { get { throw null; } } public string FusionLog { get { throw null; } } public override string Message { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } [System.FlagsAttribute] public enum Base64FormattingOptions { InsertLineBreaks = 1, None = 0, } public static partial class BitConverter { public static readonly bool IsLittleEndian; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static long DoubleToInt64Bits(double value) { throw null; } public static byte[] GetBytes(bool value) { throw null; } public static byte[] GetBytes(char value) { throw null; } public static byte[] GetBytes(double value) { throw null; } public static byte[] GetBytes(short value) { throw null; } public static byte[] GetBytes(int value) { throw null; } public static byte[] GetBytes(long value) { throw null; } public static byte[] GetBytes(float value) { throw null; } [System.CLSCompliantAttribute(false)] public static byte[] GetBytes(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static byte[] GetBytes(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static byte[] GetBytes(ulong value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static float Int32BitsToSingle(int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static double Int64BitsToDouble(long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int SingleToInt32Bits(float value) { throw null; } public static bool ToBoolean(byte[] value, int startIndex) { throw null; } public static bool ToBoolean(System.ReadOnlySpan value) { throw null; } public static char ToChar(byte[] value, int startIndex) { throw null; } public static char ToChar(System.ReadOnlySpan value) { throw null; } public static double ToDouble(byte[] value, int startIndex) { throw null; } public static double ToDouble(System.ReadOnlySpan value) { throw null; } public static short ToInt16(byte[] value, int startIndex) { throw null; } public static short ToInt16(System.ReadOnlySpan value) { throw null; } public static int ToInt32(byte[] value, int startIndex) { throw null; } public static int ToInt32(System.ReadOnlySpan value) { throw null; } public static long ToInt64(byte[] value, int startIndex) { throw null; } public static long ToInt64(System.ReadOnlySpan value) { throw null; } public static float ToSingle(byte[] value, int startIndex) { throw null; } public static float ToSingle(System.ReadOnlySpan value) { throw null; } public static string ToString(byte[] value) { throw null; } public static string ToString(byte[] value, int startIndex) { throw null; } public static string ToString(byte[] value, int startIndex, int length) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(byte[] value, int startIndex) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(System.ReadOnlySpan value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(byte[] value, int startIndex) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(System.ReadOnlySpan value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(byte[] value, int startIndex) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(System.ReadOnlySpan value) { throw null; } public static bool TryWriteBytes(System.Span destination, bool value) { throw null; } public static bool TryWriteBytes(System.Span destination, char value) { throw null; } public static bool TryWriteBytes(System.Span destination, double value) { throw null; } public static bool TryWriteBytes(System.Span destination, short value) { throw null; } public static bool TryWriteBytes(System.Span destination, int value) { throw null; } public static bool TryWriteBytes(System.Span destination, long value) { throw null; } public static bool TryWriteBytes(System.Span destination, float value) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryWriteBytes(System.Span destination, ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryWriteBytes(System.Span destination, uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryWriteBytes(System.Span destination, ulong value) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Boolean : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable { private readonly bool _dummyPrimitive; public static readonly string FalseString; public static readonly string TrueString; public int CompareTo(System.Boolean value) { throw null; } public int CompareTo(object obj) { throw null; } public System.Boolean Equals(System.Boolean obj) { throw null; } public override System.Boolean Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } public static System.Boolean Parse(System.ReadOnlySpan value) { throw null; } public static System.Boolean Parse(string value) { throw null; } System.Boolean System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public System.Boolean TryFormat(System.Span destination, out int charsWritten) { throw null; } public static System.Boolean TryParse(System.ReadOnlySpan value, out System.Boolean result) { throw null; } public static System.Boolean TryParse(string value, out System.Boolean result) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class Buffer { public static void BlockCopy(System.Array src, int srcOffset, System.Array dst, int dstOffset, int count) { } public static int ByteLength(System.Array array) { throw null; } public static byte GetByte(System.Array array, int index) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe static void MemoryCopy(void* source, void* destination, long destinationSizeInBytes, long sourceBytesToCopy) { } [System.CLSCompliantAttribute(false)] public unsafe static void MemoryCopy(void* source, void* destination, ulong destinationSizeInBytes, ulong sourceBytesToCopy) { } public static void SetByte(System.Array array, int index, byte value) { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Byte : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly byte _dummyPrimitive; public const byte MaxValue = (byte)255; public const byte MinValue = (byte)0; public int CompareTo(System.Byte value) { throw null; } public int CompareTo(object value) { throw null; } public bool Equals(System.Byte obj) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } public static System.Byte Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } public static System.Byte Parse(string s) { throw null; } public static System.Byte Parse(string s, System.Globalization.NumberStyles style) { throw null; } public static System.Byte Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } public static System.Byte Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } System.Byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.Byte result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Byte result) { throw null; } public static bool TryParse(string s, out System.Byte result) { throw null; } public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Byte result) { throw null; } } [System.SerializableAttribute] public partial class CannotUnloadAppDomainException : System.SystemException { public CannotUnloadAppDomainException() { } protected CannotUnloadAppDomainException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public CannotUnloadAppDomainException(string message) { } public CannotUnloadAppDomainException(string message, System.Exception innerException) { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Char : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable { private readonly char _dummyPrimitive; public const char MaxValue = '\uFFFF'; public const char MinValue = '\0'; public int CompareTo(System.Char value) { throw null; } public int CompareTo(object value) { throw null; } public static string ConvertFromUtf32(int utf32) { throw null; } public static int ConvertToUtf32(System.Char highSurrogate, System.Char lowSurrogate) { throw null; } public static int ConvertToUtf32(string s, int index) { throw null; } public bool Equals(System.Char obj) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static double GetNumericValue(System.Char c) { throw null; } public static double GetNumericValue(string s, int index) { throw null; } public System.TypeCode GetTypeCode() { throw null; } public static System.Globalization.UnicodeCategory GetUnicodeCategory(System.Char c) { throw null; } public static System.Globalization.UnicodeCategory GetUnicodeCategory(string s, int index) { throw null; } public static bool IsControl(System.Char c) { throw null; } public static bool IsControl(string s, int index) { throw null; } public static bool IsDigit(System.Char c) { throw null; } public static bool IsDigit(string s, int index) { throw null; } public static bool IsHighSurrogate(System.Char c) { throw null; } public static bool IsHighSurrogate(string s, int index) { throw null; } public static bool IsLetter(System.Char c) { throw null; } public static bool IsLetter(string s, int index) { throw null; } public static bool IsLetterOrDigit(System.Char c) { throw null; } public static bool IsLetterOrDigit(string s, int index) { throw null; } public static bool IsLower(System.Char c) { throw null; } public static bool IsLower(string s, int index) { throw null; } public static bool IsLowSurrogate(System.Char c) { throw null; } public static bool IsLowSurrogate(string s, int index) { throw null; } public static bool IsNumber(System.Char c) { throw null; } public static bool IsNumber(string s, int index) { throw null; } public static bool IsPunctuation(System.Char c) { throw null; } public static bool IsPunctuation(string s, int index) { throw null; } public static bool IsSeparator(System.Char c) { throw null; } public static bool IsSeparator(string s, int index) { throw null; } public static bool IsSurrogate(System.Char c) { throw null; } public static bool IsSurrogate(string s, int index) { throw null; } public static bool IsSurrogatePair(System.Char highSurrogate, System.Char lowSurrogate) { throw null; } public static bool IsSurrogatePair(string s, int index) { throw null; } public static bool IsSymbol(System.Char c) { throw null; } public static bool IsSymbol(string s, int index) { throw null; } public static bool IsUpper(System.Char c) { throw null; } public static bool IsUpper(string s, int index) { throw null; } public static bool IsWhiteSpace(System.Char c) { throw null; } public static bool IsWhiteSpace(string s, int index) { throw null; } public static System.Char Parse(string s) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } System.Char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public static System.Char ToLower(System.Char c) { throw null; } public static System.Char ToLower(System.Char c, System.Globalization.CultureInfo culture) { throw null; } public static System.Char ToLowerInvariant(System.Char c) { throw null; } public override string ToString() { throw null; } public static string ToString(System.Char c) { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public static System.Char ToUpper(System.Char c) { throw null; } public static System.Char ToUpper(System.Char c, System.Globalization.CultureInfo culture) { throw null; } public static System.Char ToUpperInvariant(System.Char c) { throw null; } public static bool TryParse(string s, out System.Char result) { throw null; } } [System.SerializableAttribute] public sealed partial class CharEnumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.ICloneable, System.IDisposable { internal CharEnumerator() { } public char Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public object Clone() { throw null; } public void Dispose() { } public bool MoveNext() { throw null; } public void Reset() { } } [System.AttributeUsageAttribute(System.AttributeTargets.All, Inherited=true, AllowMultiple=false)] [System.SerializableAttribute] public sealed partial class CLSCompliantAttribute : System.Attribute { public CLSCompliantAttribute(bool isCompliant) { } public bool IsCompliant { get { throw null; } } } public delegate int Comparison(T x, T y); public static partial class Console { public static System.ConsoleColor BackgroundColor { get { throw null; } set { } } public static int BufferHeight { get { throw null; } [System.MonoLimitationAttribute("Implemented only on Windows")]set { } } public static int BufferWidth { get { throw null; } [System.MonoLimitationAttribute("Implemented only on Windows")]set { } } [System.MonoLimitationAttribute("Implemented only on Windows")] public static bool CapsLock { get { throw null; } } public static int CursorLeft { get { throw null; } set { } } public static int CursorSize { get { throw null; } set { } } public static int CursorTop { get { throw null; } set { } } public static bool CursorVisible { get { throw null; } set { } } public static System.IO.TextWriter Error { get { throw null; } } public static System.ConsoleColor ForegroundColor { get { throw null; } set { } } public static System.IO.TextReader In { get { throw null; } } public static System.Text.Encoding InputEncoding { get { throw null; } set { } } public static bool IsErrorRedirected { get { throw null; } } public static bool IsInputRedirected { get { throw null; } } public static bool IsOutputRedirected { get { throw null; } } public static bool KeyAvailable { get { throw null; } } public static int LargestWindowHeight { get { throw null; } } public static int LargestWindowWidth { get { throw null; } } public static bool NumberLock { get { throw null; } } public static System.IO.TextWriter Out { get { throw null; } } public static System.Text.Encoding OutputEncoding { get { throw null; } set { } } public static string Title { get { throw null; } set { } } public static bool TreatControlCAsInput { get { throw null; } set { } } public static int WindowHeight { get { throw null; } set { } } public static int WindowLeft { get { throw null; } set { } } public static int WindowTop { get { throw null; } set { } } public static int WindowWidth { get { throw null; } set { } } public static event System.ConsoleCancelEventHandler CancelKeyPress { add { } remove { } } public static void Beep() { } public static void Beep(int frequency, int duration) { } public static void Clear() { } [System.MonoLimitationAttribute("Implemented only on Windows")] public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop) { } [System.MonoLimitationAttribute("Implemented only on Windows")] public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop, char sourceChar, System.ConsoleColor sourceForeColor, System.ConsoleColor sourceBackColor) { } public static System.IO.Stream OpenStandardError() { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode=true)] public static System.IO.Stream OpenStandardError(int bufferSize) { throw null; } public static System.IO.Stream OpenStandardInput() { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode=true)] public static System.IO.Stream OpenStandardInput(int bufferSize) { throw null; } public static System.IO.Stream OpenStandardOutput() { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode=true)] public static System.IO.Stream OpenStandardOutput(int bufferSize) { throw null; } public static int Read() { throw null; } public static System.ConsoleKeyInfo ReadKey() { throw null; } public static System.ConsoleKeyInfo ReadKey(bool intercept) { throw null; } public static string ReadLine() { throw null; } public static void ResetColor() { } [System.MonoLimitationAttribute("Only works on windows")] public static void SetBufferSize(int width, int height) { } public static void SetCursorPosition(int left, int top) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public static void SetError(System.IO.TextWriter newError) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public static void SetIn(System.IO.TextReader newIn) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public static void SetOut(System.IO.TextWriter newOut) { } public static void SetWindowPosition(int left, int top) { } public static void SetWindowSize(int width, int height) { } public static void Write(bool value) { } public static void Write(char value) { } public static void Write(char[] buffer) { } public static void Write(char[] buffer, int index, int count) { } public static void Write(decimal value) { } public static void Write(double value) { } public static void Write(int value) { } public static void Write(long value) { } public static void Write(object value) { } public static void Write(float value) { } public static void Write(string value) { } public static void Write(string format, object arg0) { } public static void Write(string format, object arg0, object arg1) { } public static void Write(string format, object arg0, object arg1, object arg2) { } [System.CLSCompliantAttribute(false)] public static void Write(string format, object arg0, object arg1, object arg2, object arg3, __arglist) { } public static void Write(string format, params object[] arg) { } [System.CLSCompliantAttribute(false)] public static void Write(uint value) { } [System.CLSCompliantAttribute(false)] public static void Write(ulong value) { } public static void WriteLine() { } public static void WriteLine(bool value) { } public static void WriteLine(char value) { } public static void WriteLine(char[] buffer) { } public static void WriteLine(char[] buffer, int index, int count) { } public static void WriteLine(decimal value) { } public static void WriteLine(double value) { } public static void WriteLine(int value) { } public static void WriteLine(long value) { } public static void WriteLine(object value) { } public static void WriteLine(float value) { } public static void WriteLine(string value) { } public static void WriteLine(string format, object arg0) { } public static void WriteLine(string format, object arg0, object arg1) { } public static void WriteLine(string format, object arg0, object arg1, object arg2) { } [System.CLSCompliantAttribute(false)] public static void WriteLine(string format, object arg0, object arg1, object arg2, object arg3, __arglist) { } public static void WriteLine(string format, params object[] arg) { } [System.CLSCompliantAttribute(false)] public static void WriteLine(uint value) { } [System.CLSCompliantAttribute(false)] public static void WriteLine(ulong value) { } } [System.SerializableAttribute] public sealed partial class ConsoleCancelEventArgs : System.EventArgs { internal ConsoleCancelEventArgs() { } public bool Cancel { get { throw null; } set { } } public System.ConsoleSpecialKey SpecialKey { get { throw null; } } } public delegate void ConsoleCancelEventHandler(object sender, System.ConsoleCancelEventArgs e); public enum ConsoleColor { Black = 0, Blue = 9, Cyan = 11, DarkBlue = 1, DarkCyan = 3, DarkGray = 8, DarkGreen = 2, DarkMagenta = 5, DarkRed = 4, DarkYellow = 6, Gray = 7, Green = 10, Magenta = 13, Red = 12, White = 15, Yellow = 14, } public enum ConsoleKey { A = 65, Add = 107, Applications = 93, Attention = 246, B = 66, Backspace = 8, BrowserBack = 166, BrowserFavorites = 171, BrowserForward = 167, BrowserHome = 172, BrowserRefresh = 168, BrowserSearch = 170, BrowserStop = 169, C = 67, Clear = 12, CrSel = 247, D = 68, D0 = 48, D1 = 49, D2 = 50, D3 = 51, D4 = 52, D5 = 53, D6 = 54, D7 = 55, D8 = 56, D9 = 57, Decimal = 110, Delete = 46, Divide = 111, DownArrow = 40, E = 69, End = 35, Enter = 13, EraseEndOfFile = 249, Escape = 27, Execute = 43, ExSel = 248, F = 70, F1 = 112, F10 = 121, F11 = 122, F12 = 123, F13 = 124, F14 = 125, F15 = 126, F16 = 127, F17 = 128, F18 = 129, F19 = 130, F2 = 113, F20 = 131, F21 = 132, F22 = 133, F23 = 134, F24 = 135, F3 = 114, F4 = 115, F5 = 116, F6 = 117, F7 = 118, F8 = 119, F9 = 120, G = 71, H = 72, Help = 47, Home = 36, I = 73, Insert = 45, J = 74, K = 75, L = 76, LaunchApp1 = 182, LaunchApp2 = 183, LaunchMail = 180, LaunchMediaSelect = 181, LeftArrow = 37, LeftWindows = 91, M = 77, MediaNext = 176, MediaPlay = 179, MediaPrevious = 177, MediaStop = 178, Multiply = 106, N = 78, NoName = 252, NumPad0 = 96, NumPad1 = 97, NumPad2 = 98, NumPad3 = 99, NumPad4 = 100, NumPad5 = 101, NumPad6 = 102, NumPad7 = 103, NumPad8 = 104, NumPad9 = 105, O = 79, Oem1 = 186, Oem102 = 226, Oem2 = 191, Oem3 = 192, Oem4 = 219, Oem5 = 220, Oem6 = 221, Oem7 = 222, Oem8 = 223, OemClear = 254, OemComma = 188, OemMinus = 189, OemPeriod = 190, OemPlus = 187, P = 80, Pa1 = 253, Packet = 231, PageDown = 34, PageUp = 33, Pause = 19, Play = 250, Print = 42, PrintScreen = 44, Process = 229, Q = 81, R = 82, RightArrow = 39, RightWindows = 92, S = 83, Select = 41, Separator = 108, Sleep = 95, Spacebar = 32, Subtract = 109, T = 84, Tab = 9, U = 85, UpArrow = 38, V = 86, VolumeDown = 174, VolumeMute = 173, VolumeUp = 175, W = 87, X = 88, Y = 89, Z = 90, Zoom = 251, } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ConsoleKeyInfo { private readonly int _dummyPrimitive; public ConsoleKeyInfo(char keyChar, System.ConsoleKey key, bool shift, bool alt, bool control) { throw null; } public System.ConsoleKey Key { get { throw null; } } public char KeyChar { get { throw null; } } public System.ConsoleModifiers Modifiers { get { throw null; } } public bool Equals(System.ConsoleKeyInfo obj) { throw null; } public override bool Equals(object value) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.ConsoleKeyInfo a, System.ConsoleKeyInfo b) { throw null; } public static bool operator !=(System.ConsoleKeyInfo a, System.ConsoleKeyInfo b) { throw null; } } [System.FlagsAttribute] public enum ConsoleModifiers { Alt = 1, Control = 4, Shift = 2, } public enum ConsoleSpecialKey { ControlBreak = 1, ControlC = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class ContextBoundObject : System.MarshalByRefObject { protected ContextBoundObject() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ContextMarshalException : System.SystemException { public ContextMarshalException() { } protected ContextMarshalException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ContextMarshalException(string message) { } public ContextMarshalException(string message, System.Exception inner) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ContextStaticAttribute : System.Attribute { public ContextStaticAttribute() { } } public static partial class Convert { public static readonly object DBNull; public static object ChangeType(object value, System.Type conversionType) { throw null; } public static object ChangeType(object value, System.Type conversionType, System.IFormatProvider provider) { throw null; } public static object ChangeType(object value, System.TypeCode typeCode) { throw null; } public static object ChangeType(object value, System.TypeCode typeCode, System.IFormatProvider provider) { throw null; } public static byte[] FromBase64CharArray(char[] inArray, int offset, int length) { throw null; } public static byte[] FromBase64String(string s) { throw null; } public static System.TypeCode GetTypeCode(object value) { throw null; } public static bool IsDBNull(object value) { throw null; } public static int ToBase64CharArray(byte[] inArray, int offsetIn, int length, char[] outArray, int offsetOut) { throw null; } public static int ToBase64CharArray(byte[] inArray, int offsetIn, int length, char[] outArray, int offsetOut, System.Base64FormattingOptions options) { throw null; } public static string ToBase64String(byte[] inArray) { throw null; } public static string ToBase64String(byte[] inArray, System.Base64FormattingOptions options) { throw null; } public static string ToBase64String(byte[] inArray, int offset, int length) { throw null; } public static string ToBase64String(byte[] inArray, int offset, int length, System.Base64FormattingOptions options) { throw null; } public static string ToBase64String(System.ReadOnlySpan bytes, System.Base64FormattingOptions options = System.Base64FormattingOptions.None) { throw null; } public static bool ToBoolean(bool value) { throw null; } public static bool ToBoolean(byte value) { throw null; } public static bool ToBoolean(char value) { throw null; } public static bool ToBoolean(System.DateTime value) { throw null; } public static bool ToBoolean(decimal value) { throw null; } public static bool ToBoolean(double value) { throw null; } public static bool ToBoolean(short value) { throw null; } public static bool ToBoolean(int value) { throw null; } public static bool ToBoolean(long value) { throw null; } public static bool ToBoolean(object value) { throw null; } public static bool ToBoolean(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static bool ToBoolean(sbyte value) { throw null; } public static bool ToBoolean(float value) { throw null; } public static bool ToBoolean(string value) { throw null; } public static bool ToBoolean(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static bool ToBoolean(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static bool ToBoolean(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static bool ToBoolean(ulong value) { throw null; } public static byte ToByte(bool value) { throw null; } public static byte ToByte(byte value) { throw null; } public static byte ToByte(char value) { throw null; } public static byte ToByte(System.DateTime value) { throw null; } public static byte ToByte(decimal value) { throw null; } public static byte ToByte(double value) { throw null; } public static byte ToByte(short value) { throw null; } public static byte ToByte(int value) { throw null; } public static byte ToByte(long value) { throw null; } public static byte ToByte(object value) { throw null; } public static byte ToByte(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static byte ToByte(sbyte value) { throw null; } public static byte ToByte(float value) { throw null; } public static byte ToByte(string value) { throw null; } public static byte ToByte(string value, System.IFormatProvider provider) { throw null; } public static byte ToByte(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static byte ToByte(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static byte ToByte(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static byte ToByte(ulong value) { throw null; } public static char ToChar(bool value) { throw null; } public static char ToChar(byte value) { throw null; } public static char ToChar(char value) { throw null; } public static char ToChar(System.DateTime value) { throw null; } public static char ToChar(decimal value) { throw null; } public static char ToChar(double value) { throw null; } public static char ToChar(short value) { throw null; } public static char ToChar(int value) { throw null; } public static char ToChar(long value) { throw null; } public static char ToChar(object value) { throw null; } public static char ToChar(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static char ToChar(sbyte value) { throw null; } public static char ToChar(float value) { throw null; } public static char ToChar(string value) { throw null; } public static char ToChar(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static char ToChar(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static char ToChar(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static char ToChar(ulong value) { throw null; } public static System.DateTime ToDateTime(bool value) { throw null; } public static System.DateTime ToDateTime(byte value) { throw null; } public static System.DateTime ToDateTime(char value) { throw null; } public static System.DateTime ToDateTime(System.DateTime value) { throw null; } public static System.DateTime ToDateTime(decimal value) { throw null; } public static System.DateTime ToDateTime(double value) { throw null; } public static System.DateTime ToDateTime(short value) { throw null; } public static System.DateTime ToDateTime(int value) { throw null; } public static System.DateTime ToDateTime(long value) { throw null; } public static System.DateTime ToDateTime(object value) { throw null; } public static System.DateTime ToDateTime(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static System.DateTime ToDateTime(sbyte value) { throw null; } public static System.DateTime ToDateTime(float value) { throw null; } public static System.DateTime ToDateTime(string value) { throw null; } public static System.DateTime ToDateTime(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static System.DateTime ToDateTime(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static System.DateTime ToDateTime(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static System.DateTime ToDateTime(ulong value) { throw null; } public static decimal ToDecimal(bool value) { throw null; } public static decimal ToDecimal(byte value) { throw null; } public static decimal ToDecimal(char value) { throw null; } public static decimal ToDecimal(System.DateTime value) { throw null; } public static decimal ToDecimal(decimal value) { throw null; } public static decimal ToDecimal(double value) { throw null; } public static decimal ToDecimal(short value) { throw null; } public static decimal ToDecimal(int value) { throw null; } public static decimal ToDecimal(long value) { throw null; } public static decimal ToDecimal(object value) { throw null; } public static decimal ToDecimal(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static decimal ToDecimal(sbyte value) { throw null; } public static decimal ToDecimal(float value) { throw null; } public static decimal ToDecimal(string value) { throw null; } public static decimal ToDecimal(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static decimal ToDecimal(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static decimal ToDecimal(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static decimal ToDecimal(ulong value) { throw null; } public static double ToDouble(bool value) { throw null; } public static double ToDouble(byte value) { throw null; } public static double ToDouble(char value) { throw null; } public static double ToDouble(System.DateTime value) { throw null; } public static double ToDouble(decimal value) { throw null; } public static double ToDouble(double value) { throw null; } public static double ToDouble(short value) { throw null; } public static double ToDouble(int value) { throw null; } public static double ToDouble(long value) { throw null; } public static double ToDouble(object value) { throw null; } public static double ToDouble(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static double ToDouble(sbyte value) { throw null; } public static double ToDouble(float value) { throw null; } public static double ToDouble(string value) { throw null; } public static double ToDouble(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static double ToDouble(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static double ToDouble(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static double ToDouble(ulong value) { throw null; } public static short ToInt16(bool value) { throw null; } public static short ToInt16(byte value) { throw null; } public static short ToInt16(char value) { throw null; } public static short ToInt16(System.DateTime value) { throw null; } public static short ToInt16(decimal value) { throw null; } public static short ToInt16(double value) { throw null; } public static short ToInt16(short value) { throw null; } public static short ToInt16(int value) { throw null; } public static short ToInt16(long value) { throw null; } public static short ToInt16(object value) { throw null; } public static short ToInt16(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static short ToInt16(sbyte value) { throw null; } public static short ToInt16(float value) { throw null; } public static short ToInt16(string value) { throw null; } public static short ToInt16(string value, System.IFormatProvider provider) { throw null; } public static short ToInt16(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static short ToInt16(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static short ToInt16(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static short ToInt16(ulong value) { throw null; } public static int ToInt32(bool value) { throw null; } public static int ToInt32(byte value) { throw null; } public static int ToInt32(char value) { throw null; } public static int ToInt32(System.DateTime value) { throw null; } public static int ToInt32(decimal value) { throw null; } public static int ToInt32(double value) { throw null; } public static int ToInt32(short value) { throw null; } public static int ToInt32(int value) { throw null; } public static int ToInt32(long value) { throw null; } public static int ToInt32(object value) { throw null; } public static int ToInt32(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static int ToInt32(sbyte value) { throw null; } public static int ToInt32(float value) { throw null; } public static int ToInt32(string value) { throw null; } public static int ToInt32(string value, System.IFormatProvider provider) { throw null; } public static int ToInt32(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static int ToInt32(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static int ToInt32(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static int ToInt32(ulong value) { throw null; } public static long ToInt64(bool value) { throw null; } public static long ToInt64(byte value) { throw null; } public static long ToInt64(char value) { throw null; } public static long ToInt64(System.DateTime value) { throw null; } public static long ToInt64(decimal value) { throw null; } public static long ToInt64(double value) { throw null; } public static long ToInt64(short value) { throw null; } public static long ToInt64(int value) { throw null; } public static long ToInt64(long value) { throw null; } public static long ToInt64(object value) { throw null; } public static long ToInt64(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static long ToInt64(sbyte value) { throw null; } public static long ToInt64(float value) { throw null; } public static long ToInt64(string value) { throw null; } public static long ToInt64(string value, System.IFormatProvider provider) { throw null; } public static long ToInt64(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static long ToInt64(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static long ToInt64(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static long ToInt64(ulong value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(bool value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(byte value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(char value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(System.DateTime value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(double value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(short value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(int value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(long value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(object value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(sbyte value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(float value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(string value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(ulong value) { throw null; } public static float ToSingle(bool value) { throw null; } public static float ToSingle(byte value) { throw null; } public static float ToSingle(char value) { throw null; } public static float ToSingle(System.DateTime value) { throw null; } public static float ToSingle(decimal value) { throw null; } public static float ToSingle(double value) { throw null; } public static float ToSingle(short value) { throw null; } public static float ToSingle(int value) { throw null; } public static float ToSingle(long value) { throw null; } public static float ToSingle(object value) { throw null; } public static float ToSingle(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static float ToSingle(sbyte value) { throw null; } public static float ToSingle(float value) { throw null; } public static float ToSingle(string value) { throw null; } public static float ToSingle(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static float ToSingle(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static float ToSingle(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static float ToSingle(ulong value) { throw null; } public static string ToString(bool value) { throw null; } public static string ToString(bool value, System.IFormatProvider provider) { throw null; } public static string ToString(byte value) { throw null; } public static string ToString(byte value, System.IFormatProvider provider) { throw null; } public static string ToString(byte value, int toBase) { throw null; } public static string ToString(char value) { throw null; } public static string ToString(char value, System.IFormatProvider provider) { throw null; } public static string ToString(System.DateTime value) { throw null; } public static string ToString(System.DateTime value, System.IFormatProvider provider) { throw null; } public static string ToString(decimal value) { throw null; } public static string ToString(decimal value, System.IFormatProvider provider) { throw null; } public static string ToString(double value) { throw null; } public static string ToString(double value, System.IFormatProvider provider) { throw null; } public static string ToString(short value) { throw null; } public static string ToString(short value, System.IFormatProvider provider) { throw null; } public static string ToString(short value, int toBase) { throw null; } public static string ToString(int value) { throw null; } public static string ToString(int value, System.IFormatProvider provider) { throw null; } public static string ToString(int value, int toBase) { throw null; } public static string ToString(long value) { throw null; } public static string ToString(long value, System.IFormatProvider provider) { throw null; } public static string ToString(long value, int toBase) { throw null; } public static string ToString(object value) { throw null; } public static string ToString(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(sbyte value) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(sbyte value, System.IFormatProvider provider) { throw null; } public static string ToString(float value) { throw null; } public static string ToString(float value, System.IFormatProvider provider) { throw null; } public static string ToString(string value) { throw null; } public static string ToString(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(ushort value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(uint value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(ulong value) { throw null; } [System.CLSCompliantAttribute(false)] public static string ToString(ulong value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(bool value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(byte value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(char value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(System.DateTime value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(double value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(short value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(int value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(long value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(object value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(sbyte value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(float value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(string value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(ulong value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(bool value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(byte value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(char value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(System.DateTime value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(double value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(short value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(int value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(long value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(object value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(sbyte value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(float value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(string value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(ulong value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(bool value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(byte value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(char value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(System.DateTime value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(double value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(short value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(int value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(long value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(object value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(object value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(sbyte value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(float value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(string value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(string value, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(string value, int fromBase) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(ulong value) { throw null; } public static bool TryFromBase64Chars(System.ReadOnlySpan chars, System.Span bytes, out int bytesWritten) { throw null; } public static bool TryFromBase64String(string s, System.Span bytes, out int bytesWritten) { throw null; } public static bool TryToBase64Chars(System.ReadOnlySpan bytes, System.Span chars, out int charsWritten, System.Base64FormattingOptions options = System.Base64FormattingOptions.None) { throw null; } } public delegate TOutput Converter(TInput input); [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate void CrossAppDomainDelegate(); [System.SerializableAttribute] public sealed partial class CultureAwareComparer : System.StringComparer, System.Runtime.Serialization.ISerializable { internal CultureAwareComparer() { } public override int Compare(string x, string y) { throw null; } public override bool Equals(object obj) { throw null; } public override bool Equals(string x, string y) { throw null; } public override int GetHashCode() { throw null; } public override int GetHashCode(string obj) { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public sealed partial class DataMisalignedException : System.SystemException { public DataMisalignedException() { } public DataMisalignedException(string message) { } public DataMisalignedException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public readonly partial struct DateTime : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable, System.Runtime.Serialization.ISerializable { private readonly int _dummyPrimitive; public static readonly System.DateTime MaxValue; public static readonly System.DateTime MinValue; public static readonly System.DateTime UnixEpoch; public DateTime(int year, int month, int day) { throw null; } public DateTime(int year, int month, int day, System.Globalization.Calendar calendar) { throw null; } public DateTime(int year, int month, int day, int hour, int minute, int second) { throw null; } public DateTime(int year, int month, int day, int hour, int minute, int second, System.DateTimeKind kind) { throw null; } public DateTime(int year, int month, int day, int hour, int minute, int second, System.Globalization.Calendar calendar) { throw null; } public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond) { throw null; } public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, System.DateTimeKind kind) { throw null; } public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, System.Globalization.Calendar calendar) { throw null; } public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, System.Globalization.Calendar calendar, System.DateTimeKind kind) { throw null; } public DateTime(long ticks) { throw null; } public DateTime(long ticks, System.DateTimeKind kind) { throw null; } public System.DateTime Date { get { throw null; } } public int Day { get { throw null; } } public System.DayOfWeek DayOfWeek { get { throw null; } } public int DayOfYear { get { throw null; } } public int Hour { get { throw null; } } public System.DateTimeKind Kind { get { throw null; } } public int Millisecond { get { throw null; } } public int Minute { get { throw null; } } public int Month { get { throw null; } } public static System.DateTime Now { get { throw null; } } public int Second { get { throw null; } } public long Ticks { get { throw null; } } public System.TimeSpan TimeOfDay { get { throw null; } } public static System.DateTime Today { get { throw null; } } public static System.DateTime UtcNow { get { throw null; } } public int Year { get { throw null; } } public System.DateTime Add(System.TimeSpan value) { throw null; } public System.DateTime AddDays(double value) { throw null; } public System.DateTime AddHours(double value) { throw null; } public System.DateTime AddMilliseconds(double value) { throw null; } public System.DateTime AddMinutes(double value) { throw null; } public System.DateTime AddMonths(int months) { throw null; } public System.DateTime AddSeconds(double value) { throw null; } public System.DateTime AddTicks(long value) { throw null; } public System.DateTime AddYears(int value) { throw null; } public static int Compare(System.DateTime t1, System.DateTime t2) { throw null; } public int CompareTo(System.DateTime value) { throw null; } public int CompareTo(object value) { throw null; } public static int DaysInMonth(int year, int month) { throw null; } public bool Equals(System.DateTime value) { throw null; } public static bool Equals(System.DateTime t1, System.DateTime t2) { throw null; } public override bool Equals(object value) { throw null; } public static System.DateTime FromBinary(long dateData) { throw null; } public static System.DateTime FromFileTime(long fileTime) { throw null; } public static System.DateTime FromFileTimeUtc(long fileTime) { throw null; } public static System.DateTime FromOADate(double d) { throw null; } public string[] GetDateTimeFormats() { throw null; } public string[] GetDateTimeFormats(char format) { throw null; } public string[] GetDateTimeFormats(char format, System.IFormatProvider provider) { throw null; } public string[] GetDateTimeFormats(System.IFormatProvider provider) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } public bool IsDaylightSavingTime() { throw null; } public static bool IsLeapYear(int year) { throw null; } public static System.DateTime operator +(System.DateTime d, System.TimeSpan t) { throw null; } public static bool operator ==(System.DateTime d1, System.DateTime d2) { throw null; } public static bool operator >(System.DateTime t1, System.DateTime t2) { throw null; } public static bool operator >=(System.DateTime t1, System.DateTime t2) { throw null; } public static bool operator !=(System.DateTime d1, System.DateTime d2) { throw null; } public static bool operator <(System.DateTime t1, System.DateTime t2) { throw null; } public static bool operator <=(System.DateTime t1, System.DateTime t2) { throw null; } public static System.TimeSpan operator -(System.DateTime d1, System.DateTime d2) { throw null; } public static System.DateTime operator -(System.DateTime d, System.TimeSpan t) { throw null; } public static System.DateTime Parse(System.ReadOnlySpan s, System.IFormatProvider provider = null, System.Globalization.DateTimeStyles styles = System.Globalization.DateTimeStyles.None) { throw null; } public static System.DateTime Parse(string s) { throw null; } public static System.DateTime Parse(string s, System.IFormatProvider provider) { throw null; } public static System.DateTime Parse(string s, System.IFormatProvider provider, System.Globalization.DateTimeStyles styles) { throw null; } public static System.DateTime ParseExact(System.ReadOnlySpan s, System.ReadOnlySpan format, System.IFormatProvider provider, System.Globalization.DateTimeStyles style = System.Globalization.DateTimeStyles.None) { throw null; } public static System.DateTime ParseExact(System.ReadOnlySpan s, string[] formats, System.IFormatProvider provider, System.Globalization.DateTimeStyles style = System.Globalization.DateTimeStyles.None) { throw null; } public static System.DateTime ParseExact(string s, string format, System.IFormatProvider provider) { throw null; } public static System.DateTime ParseExact(string s, string format, System.IFormatProvider provider, System.Globalization.DateTimeStyles style) { throw null; } public static System.DateTime ParseExact(string s, string[] formats, System.IFormatProvider provider, System.Globalization.DateTimeStyles style) { throw null; } public static System.DateTime SpecifyKind(System.DateTime value, System.DateTimeKind kind) { throw null; } public System.TimeSpan Subtract(System.DateTime value) { throw null; } public System.DateTime Subtract(System.TimeSpan value) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public long ToBinary() { throw null; } public long ToFileTime() { throw null; } public long ToFileTimeUtc() { throw null; } public System.DateTime ToLocalTime() { throw null; } public string ToLongDateString() { throw null; } public string ToLongTimeString() { throw null; } public double ToOADate() { throw null; } public string ToShortDateString() { throw null; } public string ToShortTimeString() { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public System.DateTime ToUniversalTime() { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.DateTime result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.IFormatProvider provider, System.Globalization.DateTimeStyles styles, out System.DateTime result) { throw null; } public static bool TryParse(string s, out System.DateTime result) { throw null; } public static bool TryParse(string s, System.IFormatProvider provider, System.Globalization.DateTimeStyles styles, out System.DateTime result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan s, System.ReadOnlySpan format, System.IFormatProvider provider, System.Globalization.DateTimeStyles style, out System.DateTime result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan s, string[] formats, System.IFormatProvider provider, System.Globalization.DateTimeStyles style, out System.DateTime result) { throw null; } public static bool TryParseExact(string s, string format, System.IFormatProvider provider, System.Globalization.DateTimeStyles style, out System.DateTime result) { throw null; } public static bool TryParseExact(string s, string[] formats, System.IFormatProvider provider, System.Globalization.DateTimeStyles style, out System.DateTime result) { throw null; } } public enum DateTimeKind { Local = 2, Unspecified = 0, Utc = 1, } [System.SerializableAttribute] public partial struct DateTimeOffset : System.IComparable, System.IComparable, System.IEquatable, System.IFormattable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { private int _dummyPrimitive; public static readonly System.DateTimeOffset MaxValue; public static readonly System.DateTimeOffset MinValue; public static readonly System.DateTimeOffset UnixEpoch; public DateTimeOffset(System.DateTime dateTime) { throw null; } public DateTimeOffset(System.DateTime dateTime, System.TimeSpan offset) { throw null; } public DateTimeOffset(int year, int month, int day, int hour, int minute, int second, int millisecond, System.Globalization.Calendar calendar, System.TimeSpan offset) { throw null; } public DateTimeOffset(int year, int month, int day, int hour, int minute, int second, int millisecond, System.TimeSpan offset) { throw null; } public DateTimeOffset(int year, int month, int day, int hour, int minute, int second, System.TimeSpan offset) { throw null; } public DateTimeOffset(long ticks, System.TimeSpan offset) { throw null; } public System.DateTime Date { get { throw null; } } public System.DateTime DateTime { get { throw null; } } public int Day { get { throw null; } } public System.DayOfWeek DayOfWeek { get { throw null; } } public int DayOfYear { get { throw null; } } public int Hour { get { throw null; } } public System.DateTime LocalDateTime { get { throw null; } } public int Millisecond { get { throw null; } } public int Minute { get { throw null; } } public int Month { get { throw null; } } public static System.DateTimeOffset Now { get { throw null; } } public System.TimeSpan Offset { get { throw null; } } public int Second { get { throw null; } } public long Ticks { get { throw null; } } public System.TimeSpan TimeOfDay { get { throw null; } } public System.DateTime UtcDateTime { get { throw null; } } public static System.DateTimeOffset UtcNow { get { throw null; } } public long UtcTicks { get { throw null; } } public int Year { get { throw null; } } public System.DateTimeOffset Add(System.TimeSpan timeSpan) { throw null; } public System.DateTimeOffset AddDays(double days) { throw null; } public System.DateTimeOffset AddHours(double hours) { throw null; } public System.DateTimeOffset AddMilliseconds(double milliseconds) { throw null; } public System.DateTimeOffset AddMinutes(double minutes) { throw null; } public System.DateTimeOffset AddMonths(int months) { throw null; } public System.DateTimeOffset AddSeconds(double seconds) { throw null; } public System.DateTimeOffset AddTicks(long ticks) { throw null; } public System.DateTimeOffset AddYears(int years) { throw null; } public static int Compare(System.DateTimeOffset first, System.DateTimeOffset second) { throw null; } public int CompareTo(System.DateTimeOffset other) { throw null; } public bool Equals(System.DateTimeOffset other) { throw null; } public static bool Equals(System.DateTimeOffset first, System.DateTimeOffset second) { throw null; } public override bool Equals(object obj) { throw null; } public bool EqualsExact(System.DateTimeOffset other) { throw null; } public static System.DateTimeOffset FromFileTime(long fileTime) { throw null; } public static System.DateTimeOffset FromUnixTimeMilliseconds(long milliseconds) { throw null; } public static System.DateTimeOffset FromUnixTimeSeconds(long seconds) { throw null; } public override int GetHashCode() { throw null; } public static System.DateTimeOffset operator +(System.DateTimeOffset dateTimeOffset, System.TimeSpan timeSpan) { throw null; } public static bool operator ==(System.DateTimeOffset left, System.DateTimeOffset right) { throw null; } public static bool operator >(System.DateTimeOffset left, System.DateTimeOffset right) { throw null; } public static bool operator >=(System.DateTimeOffset left, System.DateTimeOffset right) { throw null; } public static implicit operator System.DateTimeOffset (System.DateTime dateTime) { throw null; } public static bool operator !=(System.DateTimeOffset left, System.DateTimeOffset right) { throw null; } public static bool operator <(System.DateTimeOffset left, System.DateTimeOffset right) { throw null; } public static bool operator <=(System.DateTimeOffset left, System.DateTimeOffset right) { throw null; } public static System.TimeSpan operator -(System.DateTimeOffset left, System.DateTimeOffset right) { throw null; } public static System.DateTimeOffset operator -(System.DateTimeOffset dateTimeOffset, System.TimeSpan timeSpan) { throw null; } public static System.DateTimeOffset Parse(System.ReadOnlySpan input, System.IFormatProvider formatProvider = null, System.Globalization.DateTimeStyles styles = System.Globalization.DateTimeStyles.None) { throw null; } public static System.DateTimeOffset Parse(string input) { throw null; } public static System.DateTimeOffset Parse(string input, System.IFormatProvider formatProvider) { throw null; } public static System.DateTimeOffset Parse(string input, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles) { throw null; } public static System.DateTimeOffset ParseExact(System.ReadOnlySpan input, System.ReadOnlySpan format, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles = System.Globalization.DateTimeStyles.None) { throw null; } public static System.DateTimeOffset ParseExact(System.ReadOnlySpan input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles = System.Globalization.DateTimeStyles.None) { throw null; } public static System.DateTimeOffset ParseExact(string input, string format, System.IFormatProvider formatProvider) { throw null; } public static System.DateTimeOffset ParseExact(string input, string format, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles) { throw null; } public static System.DateTimeOffset ParseExact(string input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles) { throw null; } public System.TimeSpan Subtract(System.DateTimeOffset value) { throw null; } public System.DateTimeOffset Subtract(System.TimeSpan value) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public long ToFileTime() { throw null; } public System.DateTimeOffset ToLocalTime() { throw null; } public System.DateTimeOffset ToOffset(System.TimeSpan offset) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider formatProvider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider formatProvider) { throw null; } public System.DateTimeOffset ToUniversalTime() { throw null; } public long ToUnixTimeMilliseconds() { throw null; } public long ToUnixTimeSeconds() { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider formatProvider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan input, out System.DateTimeOffset result) { throw null; } public static bool TryParse(System.ReadOnlySpan input, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) { throw null; } public static bool TryParse(string input, out System.DateTimeOffset result) { throw null; } public static bool TryParse(string input, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan input, System.ReadOnlySpan format, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) { throw null; } public static bool TryParseExact(string input, string format, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) { throw null; } public static bool TryParseExact(string input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) { throw null; } } public enum DayOfWeek { Friday = 5, Monday = 1, Saturday = 6, Sunday = 0, Thursday = 4, Tuesday = 2, Wednesday = 3, } [System.SerializableAttribute] public sealed partial class DBNull : System.IConvertible, System.Runtime.Serialization.ISerializable { internal DBNull() { } public static readonly System.DBNull Value; public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public System.TypeCode GetTypeCode() { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit)] public partial struct Decimal : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable, System.Runtime.Serialization.IDeserializationCallback { [System.Runtime.InteropServices.FieldOffsetAttribute(0)] private int _dummyPrimitive; [System.Runtime.CompilerServices.DecimalConstantAttribute((byte)0, (byte)0, (uint)4294967295, (uint)4294967295, (uint)4294967295)] public static readonly decimal MaxValue; [System.Runtime.CompilerServices.DecimalConstantAttribute((byte)0, (byte)128, (uint)0, (uint)0, (uint)1)] public static readonly decimal MinusOne; [System.Runtime.CompilerServices.DecimalConstantAttribute((byte)0, (byte)128, (uint)4294967295, (uint)4294967295, (uint)4294967295)] public static readonly decimal MinValue; [System.Runtime.CompilerServices.DecimalConstantAttribute((byte)0, (byte)0, (uint)0, (uint)0, (uint)1)] public static readonly decimal One; [System.Runtime.CompilerServices.DecimalConstantAttribute((byte)0, (byte)0, (uint)0, (uint)0, (uint)0)] public static readonly decimal Zero; public Decimal(double value) { throw null; } public Decimal(int value) { throw null; } public Decimal(int lo, int mid, int hi, bool isNegative, byte scale) { throw null; } public Decimal(int[] bits) { throw null; } public Decimal(long value) { throw null; } public Decimal(float value) { throw null; } [System.CLSCompliantAttribute(false)] public Decimal(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public Decimal(ulong value) { throw null; } public static System.Decimal Add(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal Ceiling(System.Decimal d) { throw null; } public static int Compare(System.Decimal d1, System.Decimal d2) { throw null; } public int CompareTo(System.Decimal value) { throw null; } public int CompareTo(object value) { throw null; } public static System.Decimal Divide(System.Decimal d1, System.Decimal d2) { throw null; } public bool Equals(System.Decimal value) { throw null; } public static bool Equals(System.Decimal d1, System.Decimal d2) { throw null; } public override bool Equals(object value) { throw null; } public static System.Decimal Floor(System.Decimal d) { throw null; } public static System.Decimal FromOACurrency(long cy) { throw null; } public static int[] GetBits(System.Decimal d) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } public static System.Decimal Multiply(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal Negate(System.Decimal d) { throw null; } public static System.Decimal operator +(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal operator --(System.Decimal d) { throw null; } public static System.Decimal operator /(System.Decimal d1, System.Decimal d2) { throw null; } public static bool operator ==(System.Decimal d1, System.Decimal d2) { throw null; } public static explicit operator byte (System.Decimal value) { throw null; } public static explicit operator char (System.Decimal value) { throw null; } public static explicit operator double (System.Decimal value) { throw null; } public static explicit operator short (System.Decimal value) { throw null; } public static explicit operator int (System.Decimal value) { throw null; } public static explicit operator long (System.Decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator sbyte (System.Decimal value) { throw null; } public static explicit operator float (System.Decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator ushort (System.Decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator uint (System.Decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator ulong (System.Decimal value) { throw null; } public static explicit operator System.Decimal (double value) { throw null; } public static explicit operator System.Decimal (float value) { throw null; } public static bool operator >(System.Decimal d1, System.Decimal d2) { throw null; } public static bool operator >=(System.Decimal d1, System.Decimal d2) { throw null; } public static implicit operator System.Decimal (byte value) { throw null; } public static implicit operator System.Decimal (char value) { throw null; } public static implicit operator System.Decimal (short value) { throw null; } public static implicit operator System.Decimal (int value) { throw null; } public static implicit operator System.Decimal (long value) { throw null; } [System.CLSCompliantAttribute(false)] public static implicit operator System.Decimal (sbyte value) { throw null; } [System.CLSCompliantAttribute(false)] public static implicit operator System.Decimal (ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public static implicit operator System.Decimal (uint value) { throw null; } [System.CLSCompliantAttribute(false)] public static implicit operator System.Decimal (ulong value) { throw null; } public static System.Decimal operator ++(System.Decimal d) { throw null; } public static bool operator !=(System.Decimal d1, System.Decimal d2) { throw null; } public static bool operator <(System.Decimal d1, System.Decimal d2) { throw null; } public static bool operator <=(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal operator %(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal operator *(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal operator -(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal operator -(System.Decimal d) { throw null; } public static System.Decimal operator +(System.Decimal d) { throw null; } public static System.Decimal Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } public static System.Decimal Parse(string s) { throw null; } public static System.Decimal Parse(string s, System.Globalization.NumberStyles style) { throw null; } public static System.Decimal Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } public static System.Decimal Parse(string s, System.IFormatProvider provider) { throw null; } public static System.Decimal Remainder(System.Decimal d1, System.Decimal d2) { throw null; } public static System.Decimal Round(System.Decimal d) { throw null; } public static System.Decimal Round(System.Decimal d, int decimals) { throw null; } public static System.Decimal Round(System.Decimal d, int decimals, System.MidpointRounding mode) { throw null; } public static System.Decimal Round(System.Decimal d, System.MidpointRounding mode) { throw null; } public static System.Decimal Subtract(System.Decimal d1, System.Decimal d2) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } System.Decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } public static byte ToByte(System.Decimal value) { throw null; } public static double ToDouble(System.Decimal d) { throw null; } public static short ToInt16(System.Decimal value) { throw null; } public static int ToInt32(System.Decimal d) { throw null; } public static long ToInt64(System.Decimal d) { throw null; } public static long ToOACurrency(System.Decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte ToSByte(System.Decimal value) { throw null; } public static float ToSingle(System.Decimal d) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort ToUInt16(System.Decimal value) { throw null; } [System.CLSCompliantAttribute(false)] public static uint ToUInt32(System.Decimal d) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong ToUInt64(System.Decimal d) { throw null; } public static System.Decimal Truncate(System.Decimal d) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.Decimal result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Decimal result) { throw null; } public static bool TryParse(string s, out System.Decimal result) { throw null; } public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Decimal result) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class Delegate : System.ICloneable, System.Runtime.Serialization.ISerializable { protected Delegate(object target, string method) { } protected Delegate(System.Type target, string method) { } public System.Reflection.MethodInfo Method { get { throw null; } } public object Target { get { throw null; } } public virtual object Clone() { throw null; } public static System.Delegate Combine(System.Delegate a, System.Delegate b) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static System.Delegate Combine(params System.Delegate[] delegates) { throw null; } protected virtual System.Delegate CombineImpl(System.Delegate d) { throw null; } public static System.Delegate CreateDelegate(System.Type type, object firstArgument, System.Reflection.MethodInfo method) { throw null; } public static System.Delegate CreateDelegate(System.Type type, object firstArgument, System.Reflection.MethodInfo method, bool throwOnBindFailure) { throw null; } public static System.Delegate CreateDelegate(System.Type type, object target, string method) { throw null; } public static System.Delegate CreateDelegate(System.Type type, object target, string method, bool ignoreCase) { throw null; } public static System.Delegate CreateDelegate(System.Type type, object target, string method, bool ignoreCase, bool throwOnBindFailure) { throw null; } public static System.Delegate CreateDelegate(System.Type type, System.Reflection.MethodInfo method) { throw null; } public static System.Delegate CreateDelegate(System.Type type, System.Reflection.MethodInfo method, bool throwOnBindFailure) { throw null; } public static System.Delegate CreateDelegate(System.Type type, System.Type target, string method) { throw null; } public static System.Delegate CreateDelegate(System.Type type, System.Type target, string method, bool ignoreCase) { throw null; } public static System.Delegate CreateDelegate(System.Type type, System.Type target, string method, bool ignoreCase, bool throwOnBindFailure) { throw null; } public object DynamicInvoke(params object[] args) { throw null; } protected virtual object DynamicInvokeImpl(object[] args) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public virtual System.Delegate[] GetInvocationList() { throw null; } protected virtual System.Reflection.MethodInfo GetMethodImpl() { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public static bool operator ==(System.Delegate d1, System.Delegate d2) { throw null; } public static bool operator !=(System.Delegate d1, System.Delegate d2) { throw null; } public static System.Delegate Remove(System.Delegate source, System.Delegate value) { throw null; } public static System.Delegate RemoveAll(System.Delegate source, System.Delegate value) { throw null; } protected virtual System.Delegate RemoveImpl(System.Delegate d) { throw null; } } [System.SerializableAttribute] public partial class DivideByZeroException : System.ArithmeticException { public DivideByZeroException() { } protected DivideByZeroException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public DivideByZeroException(string message) { } public DivideByZeroException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public partial class DllNotFoundException : System.TypeLoadException { public DllNotFoundException() { } protected DllNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public DllNotFoundException(string message) { } public DllNotFoundException(string message, System.Exception inner) { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Double : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private double _dummyPrimitive; public const double Epsilon = 4.94065645841247E-324; public const double MaxValue = 1.7976931348623157E+308; public const double MinValue = -1.7976931348623157E+308; public const double NaN = 0.0 / 0.0; public const double NegativeInfinity = -1.0 / 0.0; public const double PositiveInfinity = 1.0 / 0.0; public int CompareTo(System.Double value) { throw null; } public int CompareTo(object value) { throw null; } public bool Equals(System.Double obj) { throw null; } public override bool Equals(object obj) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsFinite(System.Double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsInfinity(System.Double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsNaN(System.Double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsNegative(System.Double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsNegativeInfinity(System.Double d) { throw null; } public static bool IsNormal(System.Double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsPositiveInfinity(System.Double d) { throw null; } public static bool IsSubnormal(System.Double d) { throw null; } public static bool operator ==(System.Double left, System.Double right) { throw null; } public static bool operator >(System.Double left, System.Double right) { throw null; } public static bool operator >=(System.Double left, System.Double right) { throw null; } public static bool operator !=(System.Double left, System.Double right) { throw null; } public static bool operator <(System.Double left, System.Double right) { throw null; } public static bool operator <=(System.Double left, System.Double right) { throw null; } public static System.Double Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowDecimalPoint | System.Globalization.NumberStyles.AllowExponent | System.Globalization.NumberStyles.AllowLeadingSign | System.Globalization.NumberStyles.AllowLeadingWhite | System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.AllowTrailingWhite, System.IFormatProvider provider = null) { throw null; } public static System.Double Parse(string s) { throw null; } public static System.Double Parse(string s, System.Globalization.NumberStyles style) { throw null; } public static System.Double Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } public static System.Double Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } System.Double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.Double result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Double result) { throw null; } public static bool TryParse(string s, out System.Double result) { throw null; } public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Double result) { throw null; } } [System.SerializableAttribute] public partial class DuplicateWaitObjectException : System.ArgumentException { public DuplicateWaitObjectException() { } protected DuplicateWaitObjectException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public DuplicateWaitObjectException(string parameterName) { } public DuplicateWaitObjectException(string message, System.Exception innerException) { } public DuplicateWaitObjectException(string parameterName, string message) { } } [System.SerializableAttribute] public partial class EntryPointNotFoundException : System.TypeLoadException { public EntryPointNotFoundException() { } protected EntryPointNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public EntryPointNotFoundException(string message) { } public EntryPointNotFoundException(string message, System.Exception inner) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class Enum : System.ValueType, System.IComparable, System.IConvertible, System.IFormattable { protected Enum() { } [System.Security.SecuritySafeCriticalAttribute] public int CompareTo(object target) { throw null; } public override bool Equals(object obj) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static string Format(System.Type enumType, object value, string format) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public override int GetHashCode() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static string GetName(System.Type enumType, object value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static string[] GetNames(System.Type enumType) { throw null; } public System.TypeCode GetTypeCode() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static System.Type GetUnderlyingType(System.Type enumType) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static System.Array GetValues(System.Type enumType) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public bool HasFlag(System.Enum flag) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static bool IsDefined(System.Type enumType, object value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static object Parse(System.Type enumType, string value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static object Parse(System.Type enumType, string value, bool ignoreCase) { throw null; } public static TEnum Parse(string value) where TEnum : struct { throw null; } public static TEnum Parse(string value, bool ignoreCase) where TEnum : struct { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, byte value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, short value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, int value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, long value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static object ToObject(System.Type enumType, object value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, sbyte value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, ushort value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, uint value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.Type enumType, ulong value) { throw null; } public override string ToString() { throw null; } [System.ObsoleteAttribute("The provider argument is not used. Please use ToString().")] public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } [System.ObsoleteAttribute("The provider argument is not used. Please use ToString(String).")] public string ToString(string format, System.IFormatProvider provider) { throw null; } public static bool TryParse(System.Type enumType, string value, bool ignoreCase, out object result) { throw null; } public static bool TryParse(System.Type enumType, string value, out object result) { throw null; } public static bool TryParse(string value, bool ignoreCase, out TEnum result) where TEnum : struct { throw null; } public static bool TryParse(string value, out TEnum result) where TEnum : struct { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class Environment { public static string CommandLine { get { throw null; } } public static string CurrentDirectory { get { throw null; } set { } } public static int CurrentManagedThreadId { get { throw null; } } public static int ExitCode { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]set { } } public static bool HasShutdownStarted { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } } public static bool Is64BitOperatingSystem { get { throw null; } } public static bool Is64BitProcess { get { throw null; } } public static string MachineName { [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Read="COMPUTERNAME"), System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)][System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } } public static string NewLine { get { throw null; } } public static System.OperatingSystem OSVersion { get { throw null; } } public static int ProcessorCount { [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Read="NUMBER_OF_PROCESSORS")][System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } } public static string StackTrace { [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)]get { throw null; } } public static string SystemDirectory { get { throw null; } } public static int SystemPageSize { get { throw null; } } public static int TickCount { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } } public static string UserDomainName { [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Read="USERDOMAINNAME")]get { throw null; } } [System.MonoTODOAttribute("Currently always returns false, regardless of interactive state")] public static bool UserInteractive { get { throw null; } } public static string UserName { [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Read="USERNAME;USER")][System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } } public static System.Version Version { get { throw null; } } [System.MonoTODOAttribute("Currently always returns zero")] public static long WorkingSet { [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)]get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public static void Exit(int exitCode) { } public static string ExpandEnvironmentVariables(string name) { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)] public static void FailFast(string message) { } [System.Security.SecurityCriticalAttribute] public static void FailFast(string message, System.Exception exception) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Read="PATH")] public static string[] GetCommandLineArgs() { throw null; } public static string GetEnvironmentVariable(string variable) { throw null; } public static string GetEnvironmentVariable(string variable, System.EnvironmentVariableTarget target) { throw null; } public static System.Collections.IDictionary GetEnvironmentVariables() { throw null; } public static System.Collections.IDictionary GetEnvironmentVariables(System.EnvironmentVariableTarget target) { throw null; } public static string GetFolderPath(System.Environment.SpecialFolder folder) { throw null; } public static string GetFolderPath(System.Environment.SpecialFolder folder, System.Environment.SpecialFolderOption option) { throw null; } [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] public static string[] GetLogicalDrives() { throw null; } [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] public static void SetEnvironmentVariable(string variable, string value) { } [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] public static void SetEnvironmentVariable(string variable, string value, System.EnvironmentVariableTarget target) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum SpecialFolder { AdminTools = 48, ApplicationData = 26, CDBurning = 59, CommonAdminTools = 47, CommonApplicationData = 35, CommonDesktopDirectory = 25, CommonDocuments = 46, CommonMusic = 53, CommonOemLinks = 58, CommonPictures = 54, CommonProgramFiles = 43, CommonProgramFilesX86 = 44, CommonPrograms = 23, CommonStartMenu = 22, CommonStartup = 24, CommonTemplates = 45, CommonVideos = 55, Cookies = 33, Desktop = 0, DesktopDirectory = 16, Favorites = 6, Fonts = 20, History = 34, InternetCache = 32, LocalApplicationData = 28, LocalizedResources = 57, MyComputer = 17, MyDocuments = 5, MyMusic = 13, MyPictures = 39, MyVideos = 14, NetworkShortcuts = 19, Personal = 5, PrinterShortcuts = 27, ProgramFiles = 38, ProgramFilesX86 = 42, Programs = 2, Recent = 8, Resources = 56, SendTo = 9, StartMenu = 11, Startup = 7, System = 37, SystemX86 = 41, Templates = 21, UserProfile = 40, Windows = 36, } public enum SpecialFolderOption { Create = 32768, DoNotVerify = 16384, None = 0, } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum EnvironmentVariableTarget { Machine = 2, Process = 0, User = 1, } [System.SerializableAttribute] public partial class EventArgs { public static readonly System.EventArgs Empty; public EventArgs() { } } public delegate void EventHandler(object sender, System.EventArgs e); public delegate void EventHandler(object sender, TEventArgs e); [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class Exception : System.Runtime.InteropServices._Exception, System.Runtime.Serialization.ISerializable { public Exception() { } [System.Security.SecuritySafeCriticalAttribute] protected Exception(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public Exception(string message) { } public Exception(string message, System.Exception innerException) { } public virtual System.Collections.IDictionary Data { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } } public virtual string HelpLink { get { throw null; } set { } } public int HResult { get { throw null; } protected set { } } public System.Exception InnerException { get { throw null; } } public virtual string Message { get { throw null; } } public virtual string Source { get { throw null; } set { } } public virtual string StackTrace { get { throw null; } } public System.Reflection.MethodBase TargetSite { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } } protected event System.EventHandler SerializeObjectState { add { } remove { } } public virtual System.Exception GetBaseException() { throw null; } [System.Security.SecurityCriticalAttribute] public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public new System.Type GetType() { throw null; } public override string ToString() { throw null; } } [System.ObsoleteAttribute("This type previously indicated an unspecified fatal error in the runtime. The runtime no longer raises this exception so this type is obsolete.")] [System.SerializableAttribute] public sealed partial class ExecutionEngineException : System.SystemException { public ExecutionEngineException() { } public ExecutionEngineException(string message) { } public ExecutionEngineException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public partial class FieldAccessException : System.MemberAccessException { public FieldAccessException() { } protected FieldAccessException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public FieldAccessException(string message) { } public FieldAccessException(string message, System.Exception inner) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Enum, Inherited=false)] [System.SerializableAttribute] public partial class FlagsAttribute : System.Attribute { public FlagsAttribute() { } } [System.SerializableAttribute] public partial class FormatException : System.SystemException { public FormatException() { } protected FormatException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public FormatException(string message) { } public FormatException(string message, System.Exception innerException) { } } public abstract partial class FormattableString : System.IFormattable { protected FormattableString() { } public abstract int ArgumentCount { get; } public abstract string Format { get; } public abstract object GetArgument(int index); public abstract object[] GetArguments(); public static string Invariant(System.FormattableString formattable) { throw null; } string System.IFormattable.ToString(string ignored, System.IFormatProvider formatProvider) { throw null; } public override string ToString() { throw null; } public abstract string ToString(System.IFormatProvider formatProvider); } public delegate TResult Func(); public delegate TResult Func(T arg); public delegate TResult Func(T1 arg1, T2 arg2); public delegate TResult Func(T1 arg1, T2 arg2, T3 arg3); public delegate TResult Func(T1 arg1, T2 arg2, T3 arg3, T4 arg4); public delegate TResult Func(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5); public delegate TResult Func(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6); public delegate TResult Func(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7); public delegate TResult Func(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8); public static partial class GC { public static int MaxGeneration { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } } [System.Security.SecurityCriticalAttribute] public static void AddMemoryPressure(long bytesAllocated) { } [System.Security.SecurityCriticalAttribute] public static void CancelFullGCNotification() { } [System.Security.SecuritySafeCriticalAttribute] public static void Collect() { } public static void Collect(int generation) { } [System.Security.SecuritySafeCriticalAttribute] public static void Collect(int generation, System.GCCollectionMode mode) { } [System.Security.SecuritySafeCriticalAttribute] public static void Collect(int generation, System.GCCollectionMode mode, bool blocking) { } [System.Security.SecuritySafeCriticalAttribute] public static void Collect(int generation, System.GCCollectionMode mode, bool blocking, bool compacting) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecuritySafeCriticalAttribute] public static int CollectionCount(int generation) { throw null; } [System.Security.SecurityCriticalAttribute] public static void EndNoGCRegion() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long GetAllocatedBytesForCurrentThread() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Security.SecuritySafeCriticalAttribute] public static int GetGeneration(object obj) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static int GetGeneration(System.WeakReference wo) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long GetTotalMemory(bool forceFullCollection) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void KeepAlive(object obj) { } [System.Security.SecurityCriticalAttribute] public static void RegisterForFullGCNotification(int maxGenerationThreshold, int largeObjectHeapThreshold) { } [System.Security.SecurityCriticalAttribute] public static void RemoveMemoryPressure(long bytesAllocated) { } [System.Security.SecuritySafeCriticalAttribute] public static void ReRegisterForFinalize(object obj) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecuritySafeCriticalAttribute] public static void SuppressFinalize(object obj) { } [System.Security.SecurityCriticalAttribute] public static bool TryStartNoGCRegion(long totalSize) { throw null; } [System.Security.SecurityCriticalAttribute] public static bool TryStartNoGCRegion(long totalSize, bool disallowFullBlockingGC) { throw null; } [System.Security.SecurityCriticalAttribute] public static bool TryStartNoGCRegion(long totalSize, long lohSize) { throw null; } [System.Security.SecurityCriticalAttribute] public static bool TryStartNoGCRegion(long totalSize, long lohSize, bool disallowFullBlockingGC) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.GCNotificationStatus WaitForFullGCApproach() { throw null; } [System.Security.SecurityCriticalAttribute] public static System.GCNotificationStatus WaitForFullGCApproach(int millisecondsTimeout) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.GCNotificationStatus WaitForFullGCComplete() { throw null; } [System.Security.SecurityCriticalAttribute] public static System.GCNotificationStatus WaitForFullGCComplete(int millisecondsTimeout) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void WaitForPendingFinalizers() { } } [System.SerializableAttribute] public enum GCCollectionMode { Default = 0, Forced = 1, Optimized = 2, } [System.SerializableAttribute] public enum GCNotificationStatus { Canceled = 2, Failed = 1, NotApplicable = 4, Succeeded = 0, Timeout = 3, } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Guid : System.IComparable, System.IComparable, System.IEquatable, System.IFormattable { private int _dummyPrimitive; public static readonly System.Guid Empty; public Guid(byte[] b) { throw null; } public Guid(int a, short b, short c, byte d, byte e, byte f, byte g, byte h, byte i, byte j, byte k) { throw null; } public Guid(int a, short b, short c, byte[] d) { throw null; } public Guid(System.ReadOnlySpan b) { throw null; } public Guid(string g) { throw null; } [System.CLSCompliantAttribute(false)] public Guid(uint a, ushort b, ushort c, byte d, byte e, byte f, byte g, byte h, byte i, byte j, byte k) { throw null; } public int CompareTo(System.Guid value) { throw null; } public int CompareTo(object value) { throw null; } public bool Equals(System.Guid g) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public static System.Guid NewGuid() { throw null; } public static bool operator ==(System.Guid a, System.Guid b) { throw null; } public static bool operator !=(System.Guid a, System.Guid b) { throw null; } public static System.Guid Parse(System.ReadOnlySpan input) { throw null; } public static System.Guid Parse(string input) { throw null; } public static System.Guid ParseExact(System.ReadOnlySpan input, System.ReadOnlySpan format) { throw null; } public static System.Guid ParseExact(string input, string format) { throw null; } public byte[] ToByteArray() { throw null; } public override string ToString() { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan)) { throw null; } public static bool TryParse(System.ReadOnlySpan input, out System.Guid result) { throw null; } public static bool TryParse(string input, out System.Guid result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan input, System.ReadOnlySpan format, out System.Guid result) { throw null; } public static bool TryParseExact(string input, string format, out System.Guid result) { throw null; } public bool TryWriteBytes(System.Span destination) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct HashCode { private int _dummyPrimitive; public void Add(T value) { } public void Add(T value, System.Collections.Generic.IEqualityComparer comparer) { } public static int Combine(T1 value1) { throw null; } public static int Combine(T1 value1, T2 value2) { throw null; } public static int Combine(T1 value1, T2 value2, T3 value3) { throw null; } public static int Combine(T1 value1, T2 value2, T3 value3, T4 value4) { throw null; } public static int Combine(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5) { throw null; } public static int Combine(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6) { throw null; } public static int Combine(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7) { throw null; } public static int Combine(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8) { throw null; } [System.ObsoleteAttribute("HashCode is a mutable struct and should not be compared with other HashCodes.", true)] public override bool Equals(object obj) { throw null; } [System.ObsoleteAttribute("HashCode is a mutable struct and should not be compared with other HashCodes. Use ToHashCode to retrieve the computed hash code.", true)] public override int GetHashCode() { throw null; } public int ToHashCode() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("27FFF232-A7A8-40dd-8D4A-734AD59FCD41")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IAppDomainSetup { string ApplicationBase { get; set; } string ApplicationName { get; set; } string CachePath { get; set; } string ConfigurationFile { get; set; } string DynamicBase { get; set; } string LicenseFile { get; set; } string PrivateBinPath { get; set; } string PrivateBinPathProbe { get; set; } string ShadowCopyDirectories { get; set; } string ShadowCopyFiles { get; set; } } public partial interface IAsyncDisposable { System.Threading.Tasks.ValueTask DisposeAsync(); } public partial interface IAsyncResult { object AsyncState { get; } System.Threading.WaitHandle AsyncWaitHandle { get; } bool CompletedSynchronously { get; } bool IsCompleted { get; } } public partial interface ICloneable { object Clone(); } public partial interface IComparable { int CompareTo(object obj); } public partial interface IComparable { int CompareTo(T other); } [System.CLSCompliantAttribute(false)] public partial interface IConvertible { System.TypeCode GetTypeCode(); bool ToBoolean(System.IFormatProvider provider); byte ToByte(System.IFormatProvider provider); char ToChar(System.IFormatProvider provider); System.DateTime ToDateTime(System.IFormatProvider provider); decimal ToDecimal(System.IFormatProvider provider); double ToDouble(System.IFormatProvider provider); short ToInt16(System.IFormatProvider provider); int ToInt32(System.IFormatProvider provider); long ToInt64(System.IFormatProvider provider); sbyte ToSByte(System.IFormatProvider provider); float ToSingle(System.IFormatProvider provider); string ToString(System.IFormatProvider provider); object ToType(System.Type conversionType, System.IFormatProvider provider); ushort ToUInt16(System.IFormatProvider provider); uint ToUInt32(System.IFormatProvider provider); ulong ToUInt64(System.IFormatProvider provider); } public partial interface ICustomFormatter { string Format(string format, object arg, System.IFormatProvider formatProvider); } public partial interface IDisposable { void Dispose(); } public partial interface IEquatable { bool Equals(T other); } public partial interface IFormatProvider { object GetFormat(System.Type formatType); } public partial interface IFormattable { string ToString(string format, System.IFormatProvider formatProvider); } [System.SerializableAttribute] public sealed partial class IndexOutOfRangeException : System.SystemException { public IndexOutOfRangeException() { } public IndexOutOfRangeException(string message) { } public IndexOutOfRangeException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public sealed partial class InsufficientExecutionStackException : System.SystemException { public InsufficientExecutionStackException() { } public InsufficientExecutionStackException(string message) { } public InsufficientExecutionStackException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public sealed partial class InsufficientMemoryException : System.OutOfMemoryException { public InsufficientMemoryException() { } public InsufficientMemoryException(string message) { } public InsufficientMemoryException(string message, System.Exception innerException) { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Int16 : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly short _dummyPrimitive; public const short MaxValue = (short)32767; public const short MinValue = (short)-32768; public int CompareTo(System.Int16 value) { throw null; } public int CompareTo(object value) { throw null; } public bool Equals(System.Int16 obj) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } public static System.Int16 Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } public static System.Int16 Parse(string s) { throw null; } public static System.Int16 Parse(string s, System.Globalization.NumberStyles style) { throw null; } public static System.Int16 Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } public static System.Int16 Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } System.Int16 System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Int16 result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.Int16 result) { throw null; } public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Int16 result) { throw null; } public static bool TryParse(string s, out System.Int16 result) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Int32 : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly int _dummyPrimitive; public const int MaxValue = 2147483647; public const int MinValue = -2147483648; public System.Int32 CompareTo(System.Int32 value) { throw null; } public System.Int32 CompareTo(object value) { throw null; } public bool Equals(System.Int32 obj) { throw null; } public override bool Equals(object obj) { throw null; } public override System.Int32 GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } public static System.Int32 Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } public static System.Int32 Parse(string s) { throw null; } public static System.Int32 Parse(string s, System.Globalization.NumberStyles style) { throw null; } public static System.Int32 Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } public static System.Int32 Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } System.Int32 System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out System.Int32 charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Int32 result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.Int32 result) { throw null; } public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Int32 result) { throw null; } public static bool TryParse(string s, out System.Int32 result) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Int64 : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly long _dummyPrimitive; public const long MaxValue = (long)9223372036854775807; public const long MinValue = (long)-9223372036854775808; public int CompareTo(System.Int64 value) { throw null; } public int CompareTo(object value) { throw null; } public bool Equals(System.Int64 obj) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } public static System.Int64 Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } public static System.Int64 Parse(string s) { throw null; } public static System.Int64 Parse(string s, System.Globalization.NumberStyles style) { throw null; } public static System.Int64 Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } public static System.Int64 Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } System.Int64 System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Int64 result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.Int64 result) { throw null; } public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Int64 result) { throw null; } public static bool TryParse(string s, out System.Int64 result) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct IntPtr : System.IEquatable, System.Runtime.Serialization.ISerializable { private readonly int _dummyPrimitive; public static readonly System.IntPtr Zero; [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public IntPtr(int value) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public IntPtr(long value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public unsafe IntPtr(void* value) { throw null; } public static int Size { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static System.IntPtr Add(System.IntPtr pointer, int offset) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static System.IntPtr operator +(System.IntPtr pointer, int offset) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static bool operator ==(System.IntPtr value1, System.IntPtr value2) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static explicit operator System.IntPtr (int value) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static explicit operator System.IntPtr (long value) { throw null; } public static explicit operator int (System.IntPtr value) { throw null; } public static explicit operator long (System.IntPtr value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe static explicit operator void* (System.IntPtr value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public unsafe static explicit operator System.IntPtr (void* value) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static bool operator !=(System.IntPtr value1, System.IntPtr value2) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static System.IntPtr operator -(System.IntPtr pointer, int offset) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.MayCorruptInstance, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static System.IntPtr Subtract(System.IntPtr pointer, int offset) { throw null; } bool System.IEquatable.Equals(System.IntPtr other) { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public int ToInt32() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public long ToInt64() { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public unsafe void* ToPointer() { throw null; } public override string ToString() { throw null; } public string ToString(string format) { throw null; } } [System.SerializableAttribute] public partial class InvalidCastException : System.SystemException { public InvalidCastException() { } protected InvalidCastException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public InvalidCastException(string message) { } public InvalidCastException(string message, System.Exception innerException) { } public InvalidCastException(string message, int errorCode) { } } [System.SerializableAttribute] public partial class InvalidOperationException : System.SystemException { public InvalidOperationException() { } protected InvalidOperationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public InvalidOperationException(string message) { } public InvalidOperationException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public sealed partial class InvalidProgramException : System.SystemException { public InvalidProgramException() { } public InvalidProgramException(string message) { } public InvalidProgramException(string message, System.Exception inner) { } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")] [System.SerializableAttribute] public partial class InvalidTimeZoneException : System.Exception { public InvalidTimeZoneException() { } protected InvalidTimeZoneException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public InvalidTimeZoneException(string message) { } public InvalidTimeZoneException(string message, System.Exception innerException) { } } public partial interface IObservable { System.IDisposable Subscribe(System.IObserver observer); } public partial interface IObserver { void OnCompleted(); void OnError(System.Exception error); void OnNext(T value); } public partial interface IProgress { void Report(T value); } public partial interface IServiceProvider { object GetService(System.Type serviceType); } [System.Diagnostics.DebuggerDisplayAttribute("ThreadSafetyMode={Mode}, IsValueCreated={IsValueCreated}, IsValueFaulted={IsValueFaulted}, Value={ValueForDebugDisplay}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.LazyDebugView")] [System.SerializableAttribute] public partial class Lazy { public Lazy() { } public Lazy(bool isThreadSafe) { } public Lazy(System.Func valueFactory) { } public Lazy(System.Func valueFactory, bool isThreadSafe) { } public Lazy(System.Func valueFactory, System.Threading.LazyThreadSafetyMode mode) { } public Lazy(System.Threading.LazyThreadSafetyMode mode) { } public Lazy(T value) { } public bool IsValueCreated { get { throw null; } } [System.Diagnostics.DebuggerBrowsableAttribute(System.Diagnostics.DebuggerBrowsableState.Never)] public T Value { get { throw null; } } public override string ToString() { throw null; } } public enum LoaderOptimization { [System.ObsoleteAttribute("This method has been deprecated. Please use Assembly.Load() instead. http://go.microsoft.com/fwlink/?linkid=14202")] DisallowBindings = 4, [System.ObsoleteAttribute("This method has been deprecated. Please use Assembly.Load() instead. http://go.microsoft.com/fwlink/?linkid=14202")] DomainMask = 3, MultiDomain = 2, MultiDomainHost = 3, NotSpecified = 0, SingleDomain = 1, } [System.AttributeUsageAttribute(System.AttributeTargets.Method)] public sealed partial class LoaderOptimizationAttribute : System.Attribute { public LoaderOptimizationAttribute(byte value) { } public LoaderOptimizationAttribute(System.LoaderOptimization value) { } public System.LoaderOptimization Value { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class LocalDataStoreSlot { internal LocalDataStoreSlot() { } ~LocalDataStoreSlot() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class MarshalByRefObject { protected MarshalByRefObject() { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Infrastructure=true)] public virtual System.Runtime.Remoting.ObjRef CreateObjRef(System.Type requestedType) { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Infrastructure=true)] public object GetLifetimeService() { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Infrastructure=true)] public virtual object InitializeLifetimeService() { throw null; } protected System.MarshalByRefObject MemberwiseClone(bool cloneIdentity) { throw null; } } public static partial class Math { public const double E = 2.7182818284590451; public const double PI = 3.1415926535897931; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Abs(decimal value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Abs(double value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static short Abs(short value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int Abs(int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static long Abs(long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static sbyte Abs(sbyte value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Abs(float value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Acos(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Acosh(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Asin(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Asinh(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Atan(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Atan2(double y, double x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Atanh(double d) { throw null; } public static long BigMul(int a, int b) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Cbrt(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Ceiling(decimal d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Ceiling(double a) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static byte Clamp(byte value, byte min, byte max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Clamp(decimal value, decimal min, decimal max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static double Clamp(double value, double min, double max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static short Clamp(short value, short min, short max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int Clamp(int value, int min, int max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static long Clamp(long value, long min, long max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static sbyte Clamp(sbyte value, sbyte min, sbyte max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static float Clamp(float value, float min, float max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ushort Clamp(ushort value, ushort min, ushort max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static uint Clamp(uint value, uint min, uint max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ulong Clamp(ulong value, ulong min, ulong max) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Cos(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Cosh(double value) { throw null; } public static int DivRem(int a, int b, out int result) { throw null; } public static long DivRem(long a, long b, out long result) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Exp(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Floor(decimal d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Floor(double d) { throw null; } public static double IEEERemainder(double x, double y) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Log(double d) { throw null; } public static double Log(double a, double newBase) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Log10(double d) { throw null; } public static byte Max(byte val1, byte val2) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Max(decimal val1, decimal val2) { throw null; } public static double Max(double val1, double val2) { throw null; } public static short Max(short val1, short val2) { throw null; } public static int Max(int val1, int val2) { throw null; } public static long Max(long val1, long val2) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte Max(sbyte val1, sbyte val2) { throw null; } public static float Max(float val1, float val2) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort Max(ushort val1, ushort val2) { throw null; } [System.CLSCompliantAttribute(false)] public static uint Max(uint val1, uint val2) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong Max(ulong val1, ulong val2) { throw null; } public static byte Min(byte val1, byte val2) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Min(decimal val1, decimal val2) { throw null; } public static double Min(double val1, double val2) { throw null; } public static short Min(short val1, short val2) { throw null; } public static int Min(int val1, int val2) { throw null; } public static long Min(long val1, long val2) { throw null; } [System.CLSCompliantAttribute(false)] public static sbyte Min(sbyte val1, sbyte val2) { throw null; } public static float Min(float val1, float val2) { throw null; } [System.CLSCompliantAttribute(false)] public static ushort Min(ushort val1, ushort val2) { throw null; } [System.CLSCompliantAttribute(false)] public static uint Min(uint val1, uint val2) { throw null; } [System.CLSCompliantAttribute(false)] public static ulong Min(ulong val1, ulong val2) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Pow(double x, double y) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Round(decimal d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Round(decimal d, int decimals) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Round(decimal d, int decimals, System.MidpointRounding mode) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Round(decimal d, System.MidpointRounding mode) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Round(double a) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static double Round(double value, int digits) { throw null; } public static double Round(double value, int digits, System.MidpointRounding mode) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static double Round(double value, System.MidpointRounding mode) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int Sign(decimal value) { throw null; } public static int Sign(double value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int Sign(short value) { throw null; } public static int Sign(int value) { throw null; } public static int Sign(long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static int Sign(sbyte value) { throw null; } public static int Sign(float value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Sin(double a) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Sinh(double value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Sqrt(double d) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Tan(double a) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Tanh(double value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static decimal Truncate(decimal d) { throw null; } public static double Truncate(double d) { throw null; } } public static partial class MathF { public const float E = 2.71828175f; public const float PI = 3.14159274f; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static float Abs(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Acos(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Acosh(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Asin(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Asinh(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Atan(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Atan2(float y, float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Atanh(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Cbrt(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Ceiling(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Cos(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Cosh(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Exp(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Floor(float x) { throw null; } public static float IEEERemainder(float x, float y) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Log(float x) { throw null; } public static float Log(float x, float y) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Log10(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static float Max(float x, float y) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static float Min(float x, float y) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Pow(float x, float y) { throw null; } public static float Round(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static float Round(float x, int digits) { throw null; } public static float Round(float x, int digits, System.MidpointRounding mode) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static float Round(float x, System.MidpointRounding mode) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int Sign(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Sin(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Sinh(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Sqrt(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Tan(float x) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Tanh(float x) { throw null; } public static float Truncate(float x) { throw null; } } [System.SerializableAttribute] public partial class MemberAccessException : System.SystemException { public MemberAccessException() { } protected MemberAccessException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MemberAccessException(string message) { } public MemberAccessException(string message, System.Exception inner) { } } public static partial class MemoryExtensions { public static System.ReadOnlyMemory AsMemory(this string text) { throw null; } public static System.ReadOnlyMemory AsMemory(this string text, int start) { throw null; } public static System.ReadOnlyMemory AsMemory(this string text, int start, int length) { throw null; } public static System.Memory AsMemory(this System.ArraySegment segment) { throw null; } public static System.Memory AsMemory(this System.ArraySegment segment, int start) { throw null; } public static System.Memory AsMemory(this System.ArraySegment segment, int start, int length) { throw null; } public static System.Memory AsMemory(this T[] array) { throw null; } public static System.Memory AsMemory(this T[] array, int start) { throw null; } public static System.Memory AsMemory(this T[] array, int start, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.ReadOnlySpan AsSpan(this string text) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.ReadOnlySpan AsSpan(this string text, int start) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.ReadOnlySpan AsSpan(this string text, int start, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span AsSpan(this System.ArraySegment segment) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span AsSpan(this System.ArraySegment segment, int start) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span AsSpan(this System.ArraySegment segment, int start, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span AsSpan(this T[] array) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span AsSpan(this T[] array, int start) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span AsSpan(this T[] array, int start, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int BinarySearch(this System.ReadOnlySpan span, System.IComparable comparable) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int BinarySearch(this System.Span span, System.IComparable comparable) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int BinarySearch(this System.ReadOnlySpan span, T value, TComparer comparer) where TComparer : System.Collections.Generic.IComparer { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int BinarySearch(this System.ReadOnlySpan span, TComparable comparable) where TComparable : System.IComparable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int BinarySearch(this System.Span span, T value, TComparer comparer) where TComparer : System.Collections.Generic.IComparer { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int BinarySearch(this System.Span span, TComparable comparable) where TComparable : System.IComparable { throw null; } public static int CompareTo(this System.ReadOnlySpan span, System.ReadOnlySpan other, System.StringComparison comparisonType) { throw null; } public static bool Contains(this System.ReadOnlySpan span, System.ReadOnlySpan value, System.StringComparison comparisonType) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void CopyTo(this T[] source, System.Memory destination) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void CopyTo(this T[] source, System.Span destination) { } public static bool EndsWith(this System.ReadOnlySpan span, System.ReadOnlySpan value, System.StringComparison comparisonType) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool EndsWith(this System.ReadOnlySpan span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool EndsWith(this System.Span span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } public static bool Equals(this System.ReadOnlySpan span, System.ReadOnlySpan other, System.StringComparison comparisonType) { throw null; } public static int IndexOf(this System.ReadOnlySpan span, System.ReadOnlySpan value, System.StringComparison comparisonType) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOfAny(this System.ReadOnlySpan span, System.ReadOnlySpan values) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOfAny(this System.ReadOnlySpan span, T value0, T value1) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOfAny(this System.ReadOnlySpan span, T value0, T value1, T value2) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOfAny(this System.Span span, System.ReadOnlySpan values) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOfAny(this System.Span span, T value0, T value1) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOfAny(this System.Span span, T value0, T value1, T value2) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOf(this System.ReadOnlySpan span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOf(this System.ReadOnlySpan span, T value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOf(this System.Span span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int IndexOf(this System.Span span, T value) where T : System.IEquatable { throw null; } public static bool IsWhiteSpace(this System.ReadOnlySpan span) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOfAny(this System.ReadOnlySpan span, System.ReadOnlySpan values) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOfAny(this System.ReadOnlySpan span, T value0, T value1) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOfAny(this System.ReadOnlySpan span, T value0, T value1, T value2) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOfAny(this System.Span span, System.ReadOnlySpan values) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOfAny(this System.Span span, T value0, T value1) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOfAny(this System.Span span, T value0, T value1, T value2) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOf(this System.ReadOnlySpan span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOf(this System.ReadOnlySpan span, T value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOf(this System.Span span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int LastIndexOf(this System.Span span, T value) where T : System.IEquatable { throw null; } public static bool Overlaps(this System.ReadOnlySpan span, System.ReadOnlySpan other) { throw null; } public static bool Overlaps(this System.ReadOnlySpan span, System.ReadOnlySpan other, out int elementOffset) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool Overlaps(this System.Span span, System.ReadOnlySpan other) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool Overlaps(this System.Span span, System.ReadOnlySpan other, out int elementOffset) { throw null; } public static void Reverse(this System.Span span) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int SequenceCompareTo(this System.ReadOnlySpan span, System.ReadOnlySpan other) where T : System.IComparable { throw null; } public static int SequenceCompareTo(this System.Span span, System.ReadOnlySpan other) where T : System.IComparable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool SequenceEqual(this System.ReadOnlySpan span, System.ReadOnlySpan other) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool SequenceEqual(this System.Span span, System.ReadOnlySpan other) where T : System.IEquatable { throw null; } public static bool StartsWith(this System.ReadOnlySpan span, System.ReadOnlySpan value, System.StringComparison comparisonType) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool StartsWith(this System.ReadOnlySpan span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool StartsWith(this System.Span span, System.ReadOnlySpan value) where T : System.IEquatable { throw null; } public static int ToLower(this System.ReadOnlySpan source, System.Span destination, System.Globalization.CultureInfo culture) { throw null; } public static int ToLowerInvariant(this System.ReadOnlySpan source, System.Span destination) { throw null; } public static int ToUpper(this System.ReadOnlySpan source, System.Span destination, System.Globalization.CultureInfo culture) { throw null; } public static int ToUpperInvariant(this System.ReadOnlySpan source, System.Span destination) { throw null; } public static System.ReadOnlySpan Trim(this System.ReadOnlySpan span) { throw null; } public static System.ReadOnlySpan Trim(this System.ReadOnlySpan span, char trimChar) { throw null; } public static System.ReadOnlySpan Trim(this System.ReadOnlySpan span, System.ReadOnlySpan trimChars) { throw null; } public static System.ReadOnlySpan TrimEnd(this System.ReadOnlySpan span) { throw null; } public static System.ReadOnlySpan TrimEnd(this System.ReadOnlySpan span, char trimChar) { throw null; } public static System.ReadOnlySpan TrimEnd(this System.ReadOnlySpan span, System.ReadOnlySpan trimChars) { throw null; } public static System.ReadOnlySpan TrimStart(this System.ReadOnlySpan span) { throw null; } public static System.ReadOnlySpan TrimStart(this System.ReadOnlySpan span, char trimChar) { throw null; } public static System.ReadOnlySpan TrimStart(this System.ReadOnlySpan span, System.ReadOnlySpan trimChars) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("{ToString(),raw}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.MemoryDebugView")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Memory { private readonly object _dummy; private readonly int _dummyPrimitive; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public Memory(T[] array) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public Memory(T[] array, int start, int length) { throw null; } public static System.Memory Empty { get { throw null; } } public bool IsEmpty { get { throw null; } } public int Length { get { throw null; } } public System.Span Span { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public void CopyTo(System.Memory destination) { } public bool Equals(System.Memory other) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static implicit operator System.Memory (System.ArraySegment segment) { throw null; } public static implicit operator System.ReadOnlyMemory (System.Memory memory) { throw null; } public static implicit operator System.Memory (T[] array) { throw null; } public System.Buffers.MemoryHandle Pin() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Memory Slice(int start) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Memory Slice(int start, int length) { throw null; } public T[] ToArray() { throw null; } public override string ToString() { throw null; } public bool TryCopyTo(System.Memory destination) { throw null; } } [System.SerializableAttribute] public partial class MethodAccessException : System.MemberAccessException { public MethodAccessException() { } protected MethodAccessException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MethodAccessException(string message) { } public MethodAccessException(string message, System.Exception inner) { } } public enum MidpointRounding { AwayFromZero = 1, ToEven = 0, } [System.SerializableAttribute] public partial class MissingFieldException : System.MissingMemberException, System.Runtime.Serialization.ISerializable { public MissingFieldException() { } protected MissingFieldException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MissingFieldException(string message) { } public MissingFieldException(string message, System.Exception inner) { } public MissingFieldException(string className, string fieldName) { } public override string Message { get { throw null; } } } [System.SerializableAttribute] public partial class MissingMemberException : System.MemberAccessException { protected string ClassName; protected string MemberName; protected byte[] Signature; public MissingMemberException() { } protected MissingMemberException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MissingMemberException(string message) { } public MissingMemberException(string message, System.Exception inner) { } public MissingMemberException(string className, string memberName) { } public override string Message { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public partial class MissingMethodException : System.MissingMemberException { public MissingMethodException() { } protected MissingMethodException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MissingMethodException(string message) { } public MissingMethodException(string message, System.Exception inner) { } public MissingMethodException(string className, string methodName) { } public override string Message { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct ModuleHandle { private int _dummyPrimitive; public static readonly System.ModuleHandle EmptyHandle; public int MDStreamVersion { get { throw null; } } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public bool Equals(System.ModuleHandle handle) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public System.RuntimeFieldHandle GetRuntimeFieldHandleFromMetadataToken(int fieldToken) { throw null; } public System.RuntimeMethodHandle GetRuntimeMethodHandleFromMetadataToken(int methodToken) { throw null; } public System.RuntimeTypeHandle GetRuntimeTypeHandleFromMetadataToken(int typeToken) { throw null; } public static bool operator ==(System.ModuleHandle left, System.ModuleHandle right) { throw null; } public static bool operator !=(System.ModuleHandle left, System.ModuleHandle right) { throw null; } public System.RuntimeFieldHandle ResolveFieldHandle(int fieldToken) { throw null; } public System.RuntimeFieldHandle ResolveFieldHandle(int fieldToken, System.RuntimeTypeHandle[] typeInstantiationContext, System.RuntimeTypeHandle[] methodInstantiationContext) { throw null; } public System.RuntimeMethodHandle ResolveMethodHandle(int methodToken) { throw null; } public System.RuntimeMethodHandle ResolveMethodHandle(int methodToken, System.RuntimeTypeHandle[] typeInstantiationContext, System.RuntimeTypeHandle[] methodInstantiationContext) { throw null; } public System.RuntimeTypeHandle ResolveTypeHandle(int typeToken) { throw null; } public System.RuntimeTypeHandle ResolveTypeHandle(int typeToken, System.RuntimeTypeHandle[] typeInstantiationContext, System.RuntimeTypeHandle[] methodInstantiationContext) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)] internal partial class MonoDocumentationNoteAttribute : System.MonoTODOAttribute { public MonoDocumentationNoteAttribute(string comment) { } } [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)] internal partial class MonoExtensionAttribute : System.MonoTODOAttribute { public MonoExtensionAttribute(string comment) { } } [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)] internal partial class MonoInternalNoteAttribute : System.MonoTODOAttribute { public MonoInternalNoteAttribute(string comment) { } } [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)] internal partial class MonoLimitationAttribute : System.MonoTODOAttribute { public MonoLimitationAttribute(string comment) { } } [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)] internal partial class MonoNotSupportedAttribute : System.MonoTODOAttribute { public MonoNotSupportedAttribute(string comment) { } } [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)] internal partial class MonoTODOAttribute : System.Attribute { public MonoTODOAttribute() { } public MonoTODOAttribute(string comment) { } public string Comment { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Method)] public sealed partial class MTAThreadAttribute : System.Attribute { public MTAThreadAttribute() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class MulticastDelegate : System.Delegate { protected MulticastDelegate(object target, string method) : base (default(object), default(string)) { } protected MulticastDelegate(System.Type target, string method) : base (default(object), default(string)) { } protected sealed override System.Delegate CombineImpl(System.Delegate follow) { throw null; } protected sealed override object DynamicInvokeImpl(object[] args) { throw null; } public sealed override bool Equals(object obj) { throw null; } public sealed override int GetHashCode() { throw null; } public sealed override System.Delegate[] GetInvocationList() { throw null; } protected override System.Reflection.MethodInfo GetMethodImpl() { throw null; } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public static bool operator ==(System.MulticastDelegate d1, System.MulticastDelegate d2) { throw null; } public static bool operator !=(System.MulticastDelegate d1, System.MulticastDelegate d2) { throw null; } protected sealed override System.Delegate RemoveImpl(System.Delegate value) { throw null; } } [System.SerializableAttribute] public sealed partial class MulticastNotSupportedException : System.SystemException { public MulticastNotSupportedException() { } public MulticastNotSupportedException(string message) { } public MulticastNotSupportedException(string message, System.Exception inner) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field, Inherited=false)] public sealed partial class NonSerializedAttribute : System.Attribute { public NonSerializedAttribute() { } } [System.SerializableAttribute] public partial class NotFiniteNumberException : System.ArithmeticException { public NotFiniteNumberException() { } public NotFiniteNumberException(double offendingNumber) { } protected NotFiniteNumberException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public NotFiniteNumberException(string message) { } public NotFiniteNumberException(string message, double offendingNumber) { } public NotFiniteNumberException(string message, double offendingNumber, System.Exception innerException) { } public NotFiniteNumberException(string message, System.Exception innerException) { } public double OffendingNumber { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public partial class NotImplementedException : System.SystemException { public NotImplementedException() { } protected NotImplementedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public NotImplementedException(string message) { } public NotImplementedException(string message, System.Exception inner) { } } [System.SerializableAttribute] public partial class NotSupportedException : System.SystemException { public NotSupportedException() { } protected NotSupportedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public NotSupportedException(string message) { } public NotSupportedException(string message, System.Exception innerException) { } } public static partial class Nullable { public static int Compare(System.Nullable n1, System.Nullable n2) where T : struct { throw null; } public static bool Equals(System.Nullable n1, System.Nullable n2) where T : struct { throw null; } public static System.Type GetUnderlyingType(System.Type nullableType) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Nullable where T : struct { internal T value; private int _dummyPrimitive; public Nullable(T value) { throw null; } public bool HasValue { get { throw null; } } public T Value { get { throw null; } } public override bool Equals(object other) { throw null; } public override int GetHashCode() { throw null; } public T GetValueOrDefault() { throw null; } public T GetValueOrDefault(T defaultValue) { throw null; } public static explicit operator T (System.Nullable value) { throw null; } public static implicit operator System.Nullable (T value) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class NullReferenceException : System.SystemException { public NullReferenceException() { } protected NullReferenceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public NullReferenceException(string message) { } public NullReferenceException(string message, System.Exception innerException) { } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.AutoDual)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class Object { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public Object() { } public virtual bool Equals(System.Object obj) { throw null; } public static bool Equals(System.Object objA, System.Object objB) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] ~Object() { } public virtual int GetHashCode() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public System.Type GetType() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]protected System.Object MemberwiseClone() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static bool ReferenceEquals(System.Object objA, System.Object objB) { throw null; } public virtual string ToString() { throw null; } } [System.SerializableAttribute] public partial class ObjectDisposedException : System.InvalidOperationException { protected ObjectDisposedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ObjectDisposedException(string objectName) { } public ObjectDisposedException(string message, System.Exception innerException) { } public ObjectDisposedException(string objectName, string message) { } public override string Message { get { throw null; } } public string ObjectName { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Event | System.AttributeTargets.Field | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Property | System.AttributeTargets.Struct, Inherited=false)] [System.SerializableAttribute] public sealed partial class ObsoleteAttribute : System.Attribute { public ObsoleteAttribute() { } public ObsoleteAttribute(string message) { } public ObsoleteAttribute(string message, bool error) { } public bool IsError { get { throw null; } } public string Message { get { throw null; } } } [System.SerializableAttribute] public sealed partial class OperatingSystem : System.ICloneable, System.Runtime.Serialization.ISerializable { public OperatingSystem(System.PlatformID platform, System.Version version) { } public System.PlatformID Platform { get { throw null; } } public string ServicePack { get { throw null; } } public System.Version Version { get { throw null; } } public string VersionString { get { throw null; } } public object Clone() { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class OperationCanceledException : System.SystemException { public OperationCanceledException() { } protected OperationCanceledException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public OperationCanceledException(string message) { } public OperationCanceledException(string message, System.Exception innerException) { } public OperationCanceledException(string message, System.Exception innerException, System.Threading.CancellationToken token) { } public OperationCanceledException(string message, System.Threading.CancellationToken token) { } public OperationCanceledException(System.Threading.CancellationToken token) { } public System.Threading.CancellationToken CancellationToken { get { throw null; } } } [System.SerializableAttribute] public partial class OrdinalComparer : System.StringComparer { internal OrdinalComparer() { } public override int Compare(string x, string y) { throw null; } public override bool Equals(object obj) { throw null; } public override bool Equals(string x, string y) { throw null; } public override int GetHashCode() { throw null; } public override int GetHashCode(string obj) { throw null; } } [System.SerializableAttribute] public partial class OutOfMemoryException : System.SystemException { public OutOfMemoryException() { } protected OutOfMemoryException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public OutOfMemoryException(string message) { } public OutOfMemoryException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public partial class OverflowException : System.ArithmeticException { public OverflowException() { } protected OverflowException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public OverflowException(string message) { } public OverflowException(string message, System.Exception innerException) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=true, AllowMultiple=false)] public sealed partial class ParamArrayAttribute : System.Attribute { public ParamArrayAttribute() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum PlatformID { MacOSX = 6, Unix = 4, Win32NT = 2, Win32S = 0, Win32Windows = 1, WinCE = 3, Xbox = 5, } [System.SerializableAttribute] public partial class PlatformNotSupportedException : System.NotSupportedException { public PlatformNotSupportedException() { } protected PlatformNotSupportedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public PlatformNotSupportedException(string message) { } public PlatformNotSupportedException(string message, System.Exception inner) { } } public delegate bool Predicate(T obj); public partial class Progress : System.IProgress { public Progress() { } public Progress(System.Action handler) { } public event System.EventHandler ProgressChanged { add { } remove { } } protected virtual void OnReport(T value) { } void System.IProgress.Report(T value) { } } public partial class Random { public Random() { } public Random(int Seed) { } public virtual int Next() { throw null; } public virtual int Next(int maxValue) { throw null; } public virtual int Next(int minValue, int maxValue) { throw null; } public virtual void NextBytes(byte[] buffer) { } public virtual void NextBytes(System.Span buffer) { } public virtual double NextDouble() { throw null; } protected virtual double Sample() { throw null; } } [System.SerializableAttribute] public partial class RankException : System.SystemException { public RankException() { } protected RankException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public RankException(string message) { } public RankException(string message, System.Exception innerException) { } } [System.Diagnostics.DebuggerDisplayAttribute("{ToString(),raw}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.MemoryDebugView")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ReadOnlyMemory { private readonly object _dummy; private readonly int _dummyPrimitive; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ReadOnlyMemory(T[] array) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ReadOnlyMemory(T[] array, int start, int length) { throw null; } public static System.ReadOnlyMemory Empty { get { throw null; } } public bool IsEmpty { get { throw null; } } public int Length { get { throw null; } } public System.ReadOnlySpan Span { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public void CopyTo(System.Memory destination) { } public override bool Equals(object obj) { throw null; } public bool Equals(System.ReadOnlyMemory other) { throw null; } public override int GetHashCode() { throw null; } public static implicit operator System.ReadOnlyMemory (System.ArraySegment segment) { throw null; } public static implicit operator System.ReadOnlyMemory (T[] array) { throw null; } public System.Buffers.MemoryHandle Pin() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.ReadOnlyMemory Slice(int start) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.ReadOnlyMemory Slice(int start, int length) { throw null; } public T[] ToArray() { throw null; } public override string ToString() { throw null; } public bool TryCopyTo(System.Memory destination) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("{ToString(),raw}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.SpanDebugView")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly ref partial struct ReadOnlySpan { private readonly object _dummy; private readonly int _dummyPrimitive; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public unsafe ReadOnlySpan(void* pointer, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ReadOnlySpan(T[] array) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ReadOnlySpan(T[] array, int start, int length) { throw null; } public static System.ReadOnlySpan Empty { get { throw null; } } public bool IsEmpty { get { throw null; } } public ref readonly T this[int index] { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public int Length { get { throw null; } } public void CopyTo(System.Span destination) { } [System.ObsoleteAttribute("Equals() on ReadOnlySpan will always throw an exception. Use == instead.")] public override bool Equals(object obj) { throw null; } public System.ReadOnlySpan.Enumerator GetEnumerator() { throw null; } [System.ObsoleteAttribute("GetHashCode() on ReadOnlySpan will always throw an exception.")] public override int GetHashCode() { throw null; } public ref readonly T GetPinnableReference() { throw null; } public static bool operator ==(System.ReadOnlySpan left, System.ReadOnlySpan right) { throw null; } public static implicit operator System.ReadOnlySpan (System.ArraySegment segment) { throw null; } public static implicit operator System.ReadOnlySpan (T[] array) { throw null; } public static bool operator !=(System.ReadOnlySpan left, System.ReadOnlySpan right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.ReadOnlySpan Slice(int start) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.ReadOnlySpan Slice(int start, int length) { throw null; } public T[] ToArray() { throw null; } public override string ToString() { throw null; } public bool TryCopyTo(System.Span destination) { throw null; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public ref partial struct Enumerator { private object _dummy; private int _dummyPrimitive; public ref readonly T Current { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public bool MoveNext() { throw null; } } } public partial class ResolveEventArgs : System.EventArgs { public ResolveEventArgs(string name) { } public ResolveEventArgs(string name, System.Reflection.Assembly requestingAssembly) { } public string Name { get { throw null; } } public System.Reflection.Assembly RequestingAssembly { get { throw null; } } } public delegate System.Reflection.Assembly ResolveEventHandler(object sender, System.ResolveEventArgs args); [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public ref partial struct RuntimeArgumentHandle { private int _dummyPrimitive; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct RuntimeFieldHandle : System.Runtime.Serialization.ISerializable { private int _dummyPrimitive; public System.IntPtr Value { get { throw null; } } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public override bool Equals(object obj) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public bool Equals(System.RuntimeFieldHandle handle) { throw null; } public override int GetHashCode() { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public static bool operator ==(System.RuntimeFieldHandle left, System.RuntimeFieldHandle right) { throw null; } public static bool operator !=(System.RuntimeFieldHandle left, System.RuntimeFieldHandle right) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct RuntimeMethodHandle : System.Runtime.Serialization.ISerializable { private int _dummyPrimitive; public System.IntPtr Value { get { throw null; } } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public override bool Equals(object obj) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public bool Equals(System.RuntimeMethodHandle handle) { throw null; } public System.IntPtr GetFunctionPointer() { throw null; } public override int GetHashCode() { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public static bool operator ==(System.RuntimeMethodHandle left, System.RuntimeMethodHandle right) { throw null; } public static bool operator !=(System.RuntimeMethodHandle left, System.RuntimeMethodHandle right) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct RuntimeTypeHandle : System.Runtime.Serialization.ISerializable { private int _dummyPrimitive; public System.IntPtr Value { get { throw null; } } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public override bool Equals(object obj) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public bool Equals(System.RuntimeTypeHandle handle) { throw null; } public override int GetHashCode() { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public System.ModuleHandle GetModuleHandle() { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public static bool operator ==(object left, System.RuntimeTypeHandle right) { throw null; } public static bool operator ==(System.RuntimeTypeHandle left, object right) { throw null; } public static bool operator !=(object left, System.RuntimeTypeHandle right) { throw null; } public static bool operator !=(System.RuntimeTypeHandle left, object right) { throw null; } } [System.CLSCompliantAttribute(false)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SByte : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly sbyte _dummyPrimitive; public const sbyte MaxValue = (sbyte)127; public const sbyte MinValue = (sbyte)-128; public int CompareTo(object obj) { throw null; } public int CompareTo(System.SByte value) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.SByte obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } [System.CLSCompliantAttribute(false)] public static System.SByte Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static System.SByte Parse(string s) { throw null; } [System.CLSCompliantAttribute(false)] public static System.SByte Parse(string s, System.Globalization.NumberStyles style) { throw null; } [System.CLSCompliantAttribute(false)] public static System.SByte Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static System.SByte Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } System.SByte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.SByte result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, out System.SByte result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.SByte result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, out System.SByte result) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SequencePosition : System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; public SequencePosition(object @object, int integer) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.SequencePosition other) { throw null; } public override int GetHashCode() { throw null; } public int GetInteger() { throw null; } public object GetObject() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Struct, Inherited=false)] public sealed partial class SerializableAttribute : System.Attribute { public SerializableAttribute() { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Single : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private float _dummyPrimitive; public const float Epsilon = 1.401298E-45f; public const float MaxValue = 3.40282347E+38f; public const float MinValue = -3.40282347E+38f; public const float NaN = 0.0f / 0.0f; public const float NegativeInfinity = -1.0f / 0.0f; public const float PositiveInfinity = 1.0f / 0.0f; public int CompareTo(object value) { throw null; } public int CompareTo(System.Single value) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.Single obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsFinite(System.Single f) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsInfinity(System.Single f) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsNaN(System.Single f) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsNegative(System.Single f) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsNegativeInfinity(System.Single f) { throw null; } public static bool IsNormal(System.Single f) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool IsPositiveInfinity(System.Single f) { throw null; } public static bool IsSubnormal(System.Single f) { throw null; } public static bool operator ==(System.Single left, System.Single right) { throw null; } public static bool operator >(System.Single left, System.Single right) { throw null; } public static bool operator >=(System.Single left, System.Single right) { throw null; } public static bool operator !=(System.Single left, System.Single right) { throw null; } public static bool operator <(System.Single left, System.Single right) { throw null; } public static bool operator <=(System.Single left, System.Single right) { throw null; } public static System.Single Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowDecimalPoint | System.Globalization.NumberStyles.AllowExponent | System.Globalization.NumberStyles.AllowLeadingSign | System.Globalization.NumberStyles.AllowLeadingWhite | System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.AllowTrailingWhite, System.IFormatProvider provider = null) { throw null; } public static System.Single Parse(string s) { throw null; } public static System.Single Parse(string s, System.Globalization.NumberStyles style) { throw null; } public static System.Single Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } public static System.Single Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } System.Single System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Single result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.Single result) { throw null; } public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Single result) { throw null; } public static bool TryParse(string s, out System.Single result) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("{ToString(),raw}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.SpanDebugView")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly ref partial struct Span { private readonly object _dummy; private readonly int _dummyPrimitive; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public unsafe Span(void* pointer, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public Span(T[] array) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public Span(T[] array, int start, int length) { throw null; } public static System.Span Empty { get { throw null; } } public bool IsEmpty { get { throw null; } } public ref T this[int index] { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public int Length { get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void Clear() { } public void CopyTo(System.Span destination) { } [System.ObsoleteAttribute("Equals() on Span will always throw an exception. Use == instead.")] public override bool Equals(object obj) { throw null; } public void Fill(T value) { } public System.Span.Enumerator GetEnumerator() { throw null; } [System.ObsoleteAttribute("GetHashCode() on Span will always throw an exception.")] public override int GetHashCode() { throw null; } public ref T GetPinnableReference() { throw null; } public static bool operator ==(System.Span left, System.Span right) { throw null; } public static implicit operator System.Span (System.ArraySegment segment) { throw null; } public static implicit operator System.ReadOnlySpan (System.Span span) { throw null; } public static implicit operator System.Span (T[] array) { throw null; } public static bool operator !=(System.Span left, System.Span right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Span Slice(int start) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Span Slice(int start, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public T[] ToArray() { throw null; } public override string ToString() { throw null; } public bool TryCopyTo(System.Span destination) { throw null; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public ref partial struct Enumerator { private object _dummy; private int _dummyPrimitive; public ref T Current { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public bool MoveNext() { throw null; } } } [System.SerializableAttribute] public sealed partial class StackOverflowException : System.SystemException { public StackOverflowException() { } public StackOverflowException(string message) { } public StackOverflowException(string message, System.Exception innerException) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method)] public sealed partial class STAThreadAttribute : System.Attribute { public STAThreadAttribute() { } } [System.SerializableAttribute] public sealed partial class String : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.ICloneable, System.IComparable, System.IComparable, System.IConvertible, System.IEquatable { public static readonly string Empty; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public unsafe String(char* value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public unsafe String(char* value, int startIndex, int length) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public String(char c, int count) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public String(char[] value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public String(char[] value, int startIndex, int length) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public String(System.ReadOnlySpan value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public unsafe String(sbyte* value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public unsafe String(sbyte* value, int startIndex, int length) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public unsafe String(sbyte* value, int startIndex, int length, System.Text.Encoding enc) { } [System.Runtime.CompilerServices.IndexerName("Chars")] public char this[int index] { get { throw null; } } public int Length { get { throw null; } } public object Clone() { throw null; } public static int Compare(System.String strA, int indexA, System.String strB, int indexB, int length) { throw null; } public static int Compare(System.String strA, int indexA, System.String strB, int indexB, int length, bool ignoreCase) { throw null; } public static int Compare(System.String strA, int indexA, System.String strB, int indexB, int length, bool ignoreCase, System.Globalization.CultureInfo culture) { throw null; } public static int Compare(System.String strA, int indexA, System.String strB, int indexB, int length, System.Globalization.CultureInfo culture, System.Globalization.CompareOptions options) { throw null; } public static int Compare(System.String strA, int indexA, System.String strB, int indexB, int length, System.StringComparison comparisonType) { throw null; } public static int Compare(System.String strA, System.String strB) { throw null; } public static int Compare(System.String strA, System.String strB, bool ignoreCase) { throw null; } public static int Compare(System.String strA, System.String strB, bool ignoreCase, System.Globalization.CultureInfo culture) { throw null; } public static int Compare(System.String strA, System.String strB, System.Globalization.CultureInfo culture, System.Globalization.CompareOptions options) { throw null; } public static int Compare(System.String strA, System.String strB, System.StringComparison comparisonType) { throw null; } public static int CompareOrdinal(System.String strA, int indexA, System.String strB, int indexB, int length) { throw null; } public static int CompareOrdinal(System.String strA, System.String strB) { throw null; } public int CompareTo(object value) { throw null; } public int CompareTo(System.String strB) { throw null; } public static System.String Concat(System.Collections.Generic.IEnumerable values) { throw null; } public static System.String Concat(object arg0) { throw null; } public static System.String Concat(object arg0, object arg1) { throw null; } public static System.String Concat(object arg0, object arg1, object arg2) { throw null; } [System.CLSCompliantAttribute(false)] public static System.String Concat(object arg0, object arg1, object arg2, object arg3, __arglist) { throw null; } public static System.String Concat(params object[] args) { throw null; } public static System.String Concat(System.String str0, System.String str1) { throw null; } public static System.String Concat(System.String str0, System.String str1, System.String str2) { throw null; } public static System.String Concat(System.String str0, System.String str1, System.String str2, System.String str3) { throw null; } public static System.String Concat(params string[] values) { throw null; } public static System.String Concat(System.Collections.Generic.IEnumerable values) { throw null; } public bool Contains(char value) { throw null; } public bool Contains(char value, System.StringComparison comparisonType) { throw null; } public bool Contains(System.String value) { throw null; } public bool Contains(System.String value, System.StringComparison comparisonType) { throw null; } public static System.String Copy(System.String str) { throw null; } public void CopyTo(int sourceIndex, char[] destination, int destinationIndex, int count) { } public static System.String Create(int length, TState state, System.Buffers.SpanAction action) { throw null; } public bool EndsWith(char value) { throw null; } public bool EndsWith(System.String value) { throw null; } public bool EndsWith(System.String value, bool ignoreCase, System.Globalization.CultureInfo culture) { throw null; } public bool EndsWith(System.String value, System.StringComparison comparisonType) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.String value) { throw null; } public static bool Equals(System.String a, System.String b) { throw null; } public static bool Equals(System.String a, System.String b, System.StringComparison comparisonType) { throw null; } public bool Equals(System.String value, System.StringComparison comparisonType) { throw null; } public static System.String Format(System.IFormatProvider provider, System.String format, object arg0) { throw null; } public static System.String Format(System.IFormatProvider provider, System.String format, object arg0, object arg1) { throw null; } public static System.String Format(System.IFormatProvider provider, System.String format, object arg0, object arg1, object arg2) { throw null; } public static System.String Format(System.IFormatProvider provider, System.String format, params object[] args) { throw null; } public static System.String Format(System.String format, object arg0) { throw null; } public static System.String Format(System.String format, object arg0, object arg1) { throw null; } public static System.String Format(System.String format, object arg0, object arg1, object arg2) { throw null; } public static System.String Format(System.String format, params object[] args) { throw null; } public System.CharEnumerator GetEnumerator() { throw null; } public override int GetHashCode() { throw null; } public int GetHashCode(System.StringComparison comparisonType) { throw null; } public System.TypeCode GetTypeCode() { throw null; } public int IndexOf(char value) { throw null; } public int IndexOf(char value, int startIndex) { throw null; } public int IndexOf(char value, int startIndex, int count) { throw null; } public int IndexOf(char value, System.StringComparison comparisonType) { throw null; } public int IndexOf(System.String value) { throw null; } public int IndexOf(System.String value, int startIndex) { throw null; } public int IndexOf(System.String value, int startIndex, int count) { throw null; } public int IndexOf(System.String value, int startIndex, int count, System.StringComparison comparisonType) { throw null; } public int IndexOf(System.String value, int startIndex, System.StringComparison comparisonType) { throw null; } public int IndexOf(System.String value, System.StringComparison comparisonType) { throw null; } public int IndexOfAny(char[] anyOf) { throw null; } public int IndexOfAny(char[] anyOf, int startIndex) { throw null; } public int IndexOfAny(char[] anyOf, int startIndex, int count) { throw null; } public System.String Insert(int startIndex, System.String value) { throw null; } public static System.String Intern(System.String str) { throw null; } public static System.String IsInterned(System.String str) { throw null; } public bool IsNormalized() { throw null; } public bool IsNormalized(System.Text.NormalizationForm normalizationForm) { throw null; } public static bool IsNullOrEmpty(System.String value) { throw null; } public static bool IsNullOrWhiteSpace(System.String value) { throw null; } public static System.String Join(char separator, params object[] values) { throw null; } public static System.String Join(char separator, params string[] value) { throw null; } public static System.String Join(char separator, string[] value, int startIndex, int count) { throw null; } public static System.String Join(System.String separator, System.Collections.Generic.IEnumerable values) { throw null; } public static System.String Join(System.String separator, params object[] values) { throw null; } public static System.String Join(System.String separator, params string[] value) { throw null; } public static System.String Join(System.String separator, string[] value, int startIndex, int count) { throw null; } public static System.String Join(char separator, System.Collections.Generic.IEnumerable values) { throw null; } public static System.String Join(System.String separator, System.Collections.Generic.IEnumerable values) { throw null; } public int LastIndexOf(char value) { throw null; } public int LastIndexOf(char value, int startIndex) { throw null; } public int LastIndexOf(char value, int startIndex, int count) { throw null; } public int LastIndexOf(System.String value) { throw null; } public int LastIndexOf(System.String value, int startIndex) { throw null; } public int LastIndexOf(System.String value, int startIndex, int count) { throw null; } public int LastIndexOf(System.String value, int startIndex, int count, System.StringComparison comparisonType) { throw null; } public int LastIndexOf(System.String value, int startIndex, System.StringComparison comparisonType) { throw null; } public int LastIndexOf(System.String value, System.StringComparison comparisonType) { throw null; } public int LastIndexOfAny(char[] anyOf) { throw null; } public int LastIndexOfAny(char[] anyOf, int startIndex) { throw null; } public int LastIndexOfAny(char[] anyOf, int startIndex, int count) { throw null; } public System.String Normalize() { throw null; } public System.String Normalize(System.Text.NormalizationForm normalizationForm) { throw null; } public static bool operator ==(System.String a, System.String b) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static implicit operator System.ReadOnlySpan (System.String value) { throw null; } public static bool operator !=(System.String a, System.String b) { throw null; } public System.String PadLeft(int totalWidth) { throw null; } public System.String PadLeft(int totalWidth, char paddingChar) { throw null; } public System.String PadRight(int totalWidth) { throw null; } public System.String PadRight(int totalWidth, char paddingChar) { throw null; } public System.String Remove(int startIndex) { throw null; } public System.String Remove(int startIndex, int count) { throw null; } public System.String Replace(char oldChar, char newChar) { throw null; } public System.String Replace(System.String oldValue, System.String newValue) { throw null; } public System.String Replace(System.String oldValue, System.String newValue, bool ignoreCase, System.Globalization.CultureInfo culture) { throw null; } public System.String Replace(System.String oldValue, System.String newValue, System.StringComparison comparisonType) { throw null; } public string[] Split(char separator, int count, System.StringSplitOptions options = System.StringSplitOptions.None) { throw null; } public string[] Split(char separator, System.StringSplitOptions options = System.StringSplitOptions.None) { throw null; } public string[] Split(params char[] separator) { throw null; } public string[] Split(char[] separator, int count) { throw null; } public string[] Split(char[] separator, int count, System.StringSplitOptions options) { throw null; } public string[] Split(char[] separator, System.StringSplitOptions options) { throw null; } public string[] Split(System.String separator, int count, System.StringSplitOptions options = System.StringSplitOptions.None) { throw null; } public string[] Split(System.String separator, System.StringSplitOptions options = System.StringSplitOptions.None) { throw null; } public string[] Split(string[] separator, int count, System.StringSplitOptions options) { throw null; } public string[] Split(string[] separator, System.StringSplitOptions options) { throw null; } public bool StartsWith(char value) { throw null; } public bool StartsWith(System.String value) { throw null; } public bool StartsWith(System.String value, bool ignoreCase, System.Globalization.CultureInfo culture) { throw null; } public bool StartsWith(System.String value, System.StringComparison comparisonType) { throw null; } public System.String Substring(int startIndex) { throw null; } public System.String Substring(int startIndex, int length) { throw null; } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public char[] ToCharArray() { throw null; } public char[] ToCharArray(int startIndex, int length) { throw null; } public System.String ToLower() { throw null; } public System.String ToLower(System.Globalization.CultureInfo culture) { throw null; } public System.String ToLowerInvariant() { throw null; } public override System.String ToString() { throw null; } public System.String ToString(System.IFormatProvider provider) { throw null; } public System.String ToUpper() { throw null; } public System.String ToUpper(System.Globalization.CultureInfo culture) { throw null; } public System.String ToUpperInvariant() { throw null; } public System.String Trim() { throw null; } public System.String Trim(char trimChar) { throw null; } public System.String Trim(params char[] trimChars) { throw null; } public System.String TrimEnd() { throw null; } public System.String TrimEnd(char trimChar) { throw null; } public System.String TrimEnd(params char[] trimChars) { throw null; } public System.String TrimStart() { throw null; } public System.String TrimStart(char trimChar) { throw null; } public System.String TrimStart(params char[] trimChars) { throw null; } } [System.SerializableAttribute] public abstract partial class StringComparer : System.Collections.Generic.IComparer, System.Collections.Generic.IEqualityComparer, System.Collections.IComparer, System.Collections.IEqualityComparer { protected StringComparer() { } public static System.StringComparer CurrentCulture { get { throw null; } } public static System.StringComparer CurrentCultureIgnoreCase { get { throw null; } } public static System.StringComparer InvariantCulture { get { throw null; } } public static System.StringComparer InvariantCultureIgnoreCase { get { throw null; } } public static System.StringComparer Ordinal { get { throw null; } } public static System.StringComparer OrdinalIgnoreCase { get { throw null; } } public int Compare(object x, object y) { throw null; } public abstract int Compare(string x, string y); public static System.StringComparer Create(System.Globalization.CultureInfo culture, bool ignoreCase) { throw null; } public static System.StringComparer Create(System.Globalization.CultureInfo culture, System.Globalization.CompareOptions options) { throw null; } public new bool Equals(object x, object y) { throw null; } public abstract bool Equals(string x, string y); public static System.StringComparer FromComparison(System.StringComparison comparisonType) { throw null; } public int GetHashCode(object obj) { throw null; } public abstract int GetHashCode(string obj); } public enum StringComparison { CurrentCulture = 0, CurrentCultureIgnoreCase = 1, InvariantCulture = 2, InvariantCultureIgnoreCase = 3, Ordinal = 4, OrdinalIgnoreCase = 5, } [System.FlagsAttribute] public enum StringSplitOptions { None = 0, RemoveEmptyEntries = 1, } [System.SerializableAttribute] public partial class SystemException : System.Exception { public SystemException() { } protected SystemException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SystemException(string message) { } public SystemException(string message, System.Exception innerException) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field, Inherited=false)] [System.SerializableAttribute] public partial class ThreadStaticAttribute : System.Attribute { public ThreadStaticAttribute() { } } [System.SerializableAttribute] public partial class TimeoutException : System.SystemException { public TimeoutException() { } protected TimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TimeoutException(string message) { } public TimeoutException(string message, System.Exception innerException) { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct TimeSpan : System.IComparable, System.IComparable, System.IEquatable, System.IFormattable { private int _dummyPrimitive; public static readonly System.TimeSpan MaxValue; public static readonly System.TimeSpan MinValue; public const long TicksPerDay = (long)864000000000; public const long TicksPerHour = (long)36000000000; public const long TicksPerMillisecond = (long)10000; public const long TicksPerMinute = (long)600000000; public const long TicksPerSecond = (long)10000000; public static readonly System.TimeSpan Zero; public TimeSpan(int hours, int minutes, int seconds) { throw null; } public TimeSpan(int days, int hours, int minutes, int seconds) { throw null; } public TimeSpan(int days, int hours, int minutes, int seconds, int milliseconds) { throw null; } public TimeSpan(long ticks) { throw null; } public int Days { get { throw null; } } public int Hours { get { throw null; } } public int Milliseconds { get { throw null; } } public int Minutes { get { throw null; } } public int Seconds { get { throw null; } } public long Ticks { get { throw null; } } public double TotalDays { get { throw null; } } public double TotalHours { get { throw null; } } public double TotalMilliseconds { get { throw null; } } public double TotalMinutes { get { throw null; } } public double TotalSeconds { get { throw null; } } public System.TimeSpan Add(System.TimeSpan ts) { throw null; } public static int Compare(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public int CompareTo(object value) { throw null; } public int CompareTo(System.TimeSpan value) { throw null; } public System.TimeSpan Divide(double divisor) { throw null; } public double Divide(System.TimeSpan ts) { throw null; } public System.TimeSpan Duration() { throw null; } public override bool Equals(object value) { throw null; } public bool Equals(System.TimeSpan obj) { throw null; } public static bool Equals(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static System.TimeSpan FromDays(double value) { throw null; } public static System.TimeSpan FromHours(double value) { throw null; } public static System.TimeSpan FromMilliseconds(double value) { throw null; } public static System.TimeSpan FromMinutes(double value) { throw null; } public static System.TimeSpan FromSeconds(double value) { throw null; } public static System.TimeSpan FromTicks(long value) { throw null; } public override int GetHashCode() { throw null; } public System.TimeSpan Multiply(double factor) { throw null; } public System.TimeSpan Negate() { throw null; } public static System.TimeSpan operator +(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static System.TimeSpan operator /(System.TimeSpan timeSpan, double divisor) { throw null; } public static double operator /(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static bool operator ==(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static bool operator >(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static bool operator >=(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static bool operator !=(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static bool operator <(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static bool operator <=(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static System.TimeSpan operator *(double factor, System.TimeSpan timeSpan) { throw null; } public static System.TimeSpan operator *(System.TimeSpan timeSpan, double factor) { throw null; } public static System.TimeSpan operator -(System.TimeSpan t1, System.TimeSpan t2) { throw null; } public static System.TimeSpan operator -(System.TimeSpan t) { throw null; } public static System.TimeSpan operator +(System.TimeSpan t) { throw null; } public static System.TimeSpan Parse(System.ReadOnlySpan input, System.IFormatProvider formatProvider = null) { throw null; } public static System.TimeSpan Parse(string s) { throw null; } public static System.TimeSpan Parse(string input, System.IFormatProvider formatProvider) { throw null; } public static System.TimeSpan ParseExact(System.ReadOnlySpan input, System.ReadOnlySpan format, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles = System.Globalization.TimeSpanStyles.None) { throw null; } public static System.TimeSpan ParseExact(System.ReadOnlySpan input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles = System.Globalization.TimeSpanStyles.None) { throw null; } public static System.TimeSpan ParseExact(string input, string format, System.IFormatProvider formatProvider) { throw null; } public static System.TimeSpan ParseExact(string input, string format, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles) { throw null; } public static System.TimeSpan ParseExact(string input, string[] formats, System.IFormatProvider formatProvider) { throw null; } public static System.TimeSpan ParseExact(string input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles) { throw null; } public System.TimeSpan Subtract(System.TimeSpan ts) { throw null; } public override string ToString() { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider formatProvider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider formatProvider = null) { throw null; } public static bool TryParse(System.ReadOnlySpan input, System.IFormatProvider formatProvider, out System.TimeSpan result) { throw null; } public static bool TryParse(System.ReadOnlySpan s, out System.TimeSpan result) { throw null; } public static bool TryParse(string input, System.IFormatProvider formatProvider, out System.TimeSpan result) { throw null; } public static bool TryParse(string s, out System.TimeSpan result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan input, System.ReadOnlySpan format, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles, out System.TimeSpan result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan input, System.ReadOnlySpan format, System.IFormatProvider formatProvider, out System.TimeSpan result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles, out System.TimeSpan result) { throw null; } public static bool TryParseExact(System.ReadOnlySpan input, string[] formats, System.IFormatProvider formatProvider, out System.TimeSpan result) { throw null; } public static bool TryParseExact(string input, string format, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles, out System.TimeSpan result) { throw null; } public static bool TryParseExact(string input, string format, System.IFormatProvider formatProvider, out System.TimeSpan result) { throw null; } public static bool TryParseExact(string input, string[] formats, System.IFormatProvider formatProvider, System.Globalization.TimeSpanStyles styles, out System.TimeSpan result) { throw null; } public static bool TryParseExact(string input, string[] formats, System.IFormatProvider formatProvider, out System.TimeSpan result) { throw null; } } [System.ObsoleteAttribute("System.TimeZone has been deprecated. Please investigate the use of System.TimeZoneInfo instead.")] [System.SerializableAttribute] public abstract partial class TimeZone { protected TimeZone() { } public static System.TimeZone CurrentTimeZone { get { throw null; } } public abstract string DaylightName { get; } public abstract string StandardName { get; } public abstract System.Globalization.DaylightTime GetDaylightChanges(int year); public abstract System.TimeSpan GetUtcOffset(System.DateTime time); public virtual bool IsDaylightSavingTime(System.DateTime time) { throw null; } public static bool IsDaylightSavingTime(System.DateTime time, System.Globalization.DaylightTime daylightTimes) { throw null; } public virtual System.DateTime ToLocalTime(System.DateTime time) { throw null; } public virtual System.DateTime ToUniversalTime(System.DateTime time) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")] [System.SerializableAttribute] public sealed partial class TimeZoneInfo : System.IEquatable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { internal TimeZoneInfo() { } public System.TimeSpan BaseUtcOffset { get { throw null; } } public string DaylightName { get { throw null; } } public string DisplayName { get { throw null; } } public string Id { get { throw null; } } public static System.TimeZoneInfo Local { get { throw null; } } public string StandardName { get { throw null; } } public bool SupportsDaylightSavingTime { get { throw null; } } public static System.TimeZoneInfo Utc { get { throw null; } } public static void ClearCachedData() { } public static System.DateTime ConvertTime(System.DateTime dateTime, System.TimeZoneInfo destinationTimeZone) { throw null; } public static System.DateTime ConvertTime(System.DateTime dateTime, System.TimeZoneInfo sourceTimeZone, System.TimeZoneInfo destinationTimeZone) { throw null; } public static System.DateTimeOffset ConvertTime(System.DateTimeOffset dateTimeOffset, System.TimeZoneInfo destinationTimeZone) { throw null; } public static System.DateTime ConvertTimeBySystemTimeZoneId(System.DateTime dateTime, string destinationTimeZoneId) { throw null; } public static System.DateTime ConvertTimeBySystemTimeZoneId(System.DateTime dateTime, string sourceTimeZoneId, string destinationTimeZoneId) { throw null; } public static System.DateTimeOffset ConvertTimeBySystemTimeZoneId(System.DateTimeOffset dateTimeOffset, string destinationTimeZoneId) { throw null; } public static System.DateTime ConvertTimeFromUtc(System.DateTime dateTime, System.TimeZoneInfo destinationTimeZone) { throw null; } public static System.DateTime ConvertTimeToUtc(System.DateTime dateTime) { throw null; } public static System.DateTime ConvertTimeToUtc(System.DateTime dateTime, System.TimeZoneInfo sourceTimeZone) { throw null; } public static System.TimeZoneInfo CreateCustomTimeZone(string id, System.TimeSpan baseUtcOffset, string displayName, string standardDisplayName) { throw null; } public static System.TimeZoneInfo CreateCustomTimeZone(string id, System.TimeSpan baseUtcOffset, string displayName, string standardDisplayName, string daylightDisplayName, System.TimeZoneInfo.AdjustmentRule[] adjustmentRules) { throw null; } public static System.TimeZoneInfo CreateCustomTimeZone(string id, System.TimeSpan baseUtcOffset, string displayName, string standardDisplayName, string daylightDisplayName, System.TimeZoneInfo.AdjustmentRule[] adjustmentRules, bool disableDaylightSavingTime) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.TimeZoneInfo other) { throw null; } public static System.TimeZoneInfo FindSystemTimeZoneById(string id) { throw null; } public static System.TimeZoneInfo FromSerializedString(string source) { throw null; } public System.TimeZoneInfo.AdjustmentRule[] GetAdjustmentRules() { throw null; } public System.TimeSpan[] GetAmbiguousTimeOffsets(System.DateTime dateTime) { throw null; } public System.TimeSpan[] GetAmbiguousTimeOffsets(System.DateTimeOffset dateTimeOffset) { throw null; } public override int GetHashCode() { throw null; } public static System.Collections.ObjectModel.ReadOnlyCollection GetSystemTimeZones() { throw null; } public System.TimeSpan GetUtcOffset(System.DateTime dateTime) { throw null; } public System.TimeSpan GetUtcOffset(System.DateTimeOffset dateTimeOffset) { throw null; } public bool HasSameRules(System.TimeZoneInfo other) { throw null; } public bool IsAmbiguousTime(System.DateTime dateTime) { throw null; } public bool IsAmbiguousTime(System.DateTimeOffset dateTimeOffset) { throw null; } public bool IsDaylightSavingTime(System.DateTime dateTime) { throw null; } public bool IsDaylightSavingTime(System.DateTimeOffset dateTimeOffset) { throw null; } public bool IsInvalidTime(System.DateTime dateTime) { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public string ToSerializedString() { throw null; } public override string ToString() { throw null; } [System.SerializableAttribute] public sealed partial class AdjustmentRule : System.IEquatable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { internal AdjustmentRule() { } public System.DateTime DateEnd { get { throw null; } } public System.DateTime DateStart { get { throw null; } } public System.TimeSpan DaylightDelta { get { throw null; } } public System.TimeZoneInfo.TransitionTime DaylightTransitionEnd { get { throw null; } } public System.TimeZoneInfo.TransitionTime DaylightTransitionStart { get { throw null; } } public static System.TimeZoneInfo.AdjustmentRule CreateAdjustmentRule(System.DateTime dateStart, System.DateTime dateEnd, System.TimeSpan daylightDelta, System.TimeZoneInfo.TransitionTime daylightTransitionStart, System.TimeZoneInfo.TransitionTime daylightTransitionEnd) { throw null; } public bool Equals(System.TimeZoneInfo.AdjustmentRule other) { throw null; } public override int GetHashCode() { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct TransitionTime : System.IEquatable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { private readonly int _dummyPrimitive; public int Day { get { throw null; } } public System.DayOfWeek DayOfWeek { get { throw null; } } public bool IsFixedDateRule { get { throw null; } } public int Month { get { throw null; } } public System.DateTime TimeOfDay { get { throw null; } } public int Week { get { throw null; } } public static System.TimeZoneInfo.TransitionTime CreateFixedDateRule(System.DateTime timeOfDay, int month, int day) { throw null; } public static System.TimeZoneInfo.TransitionTime CreateFloatingDateRule(System.DateTime timeOfDay, int month, int week, System.DayOfWeek dayOfWeek) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.TimeZoneInfo.TransitionTime other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.TimeZoneInfo.TransitionTime t1, System.TimeZoneInfo.TransitionTime t2) { throw null; } public static bool operator !=(System.TimeZoneInfo.TransitionTime t1, System.TimeZoneInfo.TransitionTime t2) { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")] [System.SerializableAttribute] public partial class TimeZoneNotFoundException : System.Exception { public TimeZoneNotFoundException() { } protected TimeZoneNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TimeZoneNotFoundException(string message) { } public TimeZoneNotFoundException(string message, System.Exception innerException) { } } public static partial class Tuple { public static System.Tuple Create(T1 item1) { throw null; } public static System.Tuple Create(T1 item1, T2 item2) { throw null; } public static System.Tuple Create(T1 item1, T2 item2, T3 item3) { throw null; } public static System.Tuple Create(T1 item1, T2 item2, T3 item3, T4 item4) { throw null; } public static System.Tuple Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5) { throw null; } public static System.Tuple Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6) { throw null; } public static System.Tuple Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7) { throw null; } public static System.Tuple> Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, T8 item8) { throw null; } } public static partial class TupleExtensions { public static void Deconstruct(this System.Tuple value, out T1 item1) { throw null; } public static void Deconstruct(this System.Tuple> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10) { throw null; } public static void Deconstruct(this System.Tuple> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11) { throw null; } public static void Deconstruct(this System.Tuple> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12) { throw null; } public static void Deconstruct(this System.Tuple> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13) { throw null; } public static void Deconstruct(this System.Tuple> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14) { throw null; } public static void Deconstruct(this System.Tuple>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15) { throw null; } public static void Deconstruct(this System.Tuple>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16) { throw null; } public static void Deconstruct(this System.Tuple>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17) { throw null; } public static void Deconstruct(this System.Tuple>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18) { throw null; } public static void Deconstruct(this System.Tuple>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18, out T19 item19) { throw null; } public static void Deconstruct(this System.Tuple value, out T1 item1, out T2 item2) { throw null; } public static void Deconstruct(this System.Tuple>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18, out T19 item19, out T20 item20) { throw null; } public static void Deconstruct(this System.Tuple>> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9, out T10 item10, out T11 item11, out T12 item12, out T13 item13, out T14 item14, out T15 item15, out T16 item16, out T17 item17, out T18 item18, out T19 item19, out T20 item20, out T21 item21) { throw null; } public static void Deconstruct(this System.Tuple value, out T1 item1, out T2 item2, out T3 item3) { throw null; } public static void Deconstruct(this System.Tuple value, out T1 item1, out T2 item2, out T3 item3, out T4 item4) { throw null; } public static void Deconstruct(this System.Tuple value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5) { throw null; } public static void Deconstruct(this System.Tuple value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6) { throw null; } public static void Deconstruct(this System.Tuple value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7) { throw null; } public static void Deconstruct(this System.Tuple> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8) { throw null; } public static void Deconstruct(this System.Tuple> value, out T1 item1, out T2 item2, out T3 item3, out T4 item4, out T5 item5, out T6 item6, out T7 item7, out T8 item8, out T9 item9) { throw null; } public static System.Tuple ToTuple(this System.ValueTuple value) { throw null; } public static System.Tuple> ToTuple(this System.ValueTuple> value) { throw null; } public static System.Tuple> ToTuple(this System.ValueTuple> value) { throw null; } public static System.Tuple> ToTuple(this System.ValueTuple> value) { throw null; } public static System.Tuple> ToTuple(this System.ValueTuple> value) { throw null; } public static System.Tuple> ToTuple(this System.ValueTuple> value) { throw null; } public static System.Tuple>> ToTuple(this System.ValueTuple>> value) { throw null; } public static System.Tuple>> ToTuple(this System.ValueTuple>> value) { throw null; } public static System.Tuple>> ToTuple(this System.ValueTuple>> value) { throw null; } public static System.Tuple>> ToTuple(this System.ValueTuple>> value) { throw null; } public static System.Tuple>> ToTuple(this System.ValueTuple>> value) { throw null; } public static System.Tuple ToTuple(this System.ValueTuple value) { throw null; } public static System.Tuple>> ToTuple(this System.ValueTuple>> value) { throw null; } public static System.Tuple>> ToTuple(this System.ValueTuple>> value) { throw null; } public static System.Tuple ToTuple(this System.ValueTuple value) { throw null; } public static System.Tuple ToTuple(this System.ValueTuple value) { throw null; } public static System.Tuple ToTuple(this System.ValueTuple value) { throw null; } public static System.Tuple ToTuple(this System.ValueTuple value) { throw null; } public static System.Tuple ToTuple(this System.ValueTuple value) { throw null; } public static System.Tuple> ToTuple(this System.ValueTuple> value) { throw null; } public static System.Tuple> ToTuple(this System.ValueTuple> value) { throw null; } public static System.ValueTuple ToValueTuple(this System.Tuple value) { throw null; } public static System.ValueTuple> ToValueTuple(this System.Tuple> value) { throw null; } public static System.ValueTuple> ToValueTuple(this System.Tuple> value) { throw null; } public static System.ValueTuple> ToValueTuple(this System.Tuple> value) { throw null; } public static System.ValueTuple> ToValueTuple(this System.Tuple> value) { throw null; } public static System.ValueTuple> ToValueTuple(this System.Tuple> value) { throw null; } public static System.ValueTuple>> ToValueTuple(this System.Tuple>> value) { throw null; } public static System.ValueTuple>> ToValueTuple(this System.Tuple>> value) { throw null; } public static System.ValueTuple>> ToValueTuple(this System.Tuple>> value) { throw null; } public static System.ValueTuple>> ToValueTuple(this System.Tuple>> value) { throw null; } public static System.ValueTuple>> ToValueTuple(this System.Tuple>> value) { throw null; } public static System.ValueTuple ToValueTuple(this System.Tuple value) { throw null; } public static System.ValueTuple>> ToValueTuple(this System.Tuple>> value) { throw null; } public static System.ValueTuple>> ToValueTuple(this System.Tuple>> value) { throw null; } public static System.ValueTuple ToValueTuple(this System.Tuple value) { throw null; } public static System.ValueTuple ToValueTuple(this System.Tuple value) { throw null; } public static System.ValueTuple ToValueTuple(this System.Tuple value) { throw null; } public static System.ValueTuple ToValueTuple(this System.Tuple value) { throw null; } public static System.ValueTuple ToValueTuple(this System.Tuple value) { throw null; } public static System.ValueTuple> ToValueTuple(this System.Tuple> value) { throw null; } public static System.ValueTuple> ToValueTuple(this System.Tuple> value) { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1) { } public T1 Item1 { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1, T2 item2) { } public T1 Item1 { get { throw null; } } public T2 Item2 { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1, T2 item2, T3 item3) { } public T1 Item1 { get { throw null; } } public T2 Item2 { get { throw null; } } public T3 Item3 { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1, T2 item2, T3 item3, T4 item4) { } public T1 Item1 { get { throw null; } } public T2 Item2 { get { throw null; } } public T3 Item3 { get { throw null; } } public T4 Item4 { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5) { } public T1 Item1 { get { throw null; } } public T2 Item2 { get { throw null; } } public T3 Item3 { get { throw null; } } public T4 Item4 { get { throw null; } } public T5 Item5 { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6) { } public T1 Item1 { get { throw null; } } public T2 Item2 { get { throw null; } } public T3 Item3 { get { throw null; } } public T4 Item4 { get { throw null; } } public T5 Item5 { get { throw null; } } public T6 Item6 { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7) { } public T1 Item1 { get { throw null; } } public T2 Item2 { get { throw null; } } public T3 Item3 { get { throw null; } } public T4 Item4 { get { throw null; } } public T5 Item5 { get { throw null; } } public T6 Item6 { get { throw null; } } public T7 Item7 { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class Tuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.Runtime.CompilerServices.ITuple { public Tuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, TRest rest) { } public T1 Item1 { get { throw null; } } public T2 Item2 { get { throw null; } } public T3 Item3 { get { throw null; } } public T4 Item4 { get { throw null; } } public T5 Item5 { get { throw null; } } public T6 Item6 { get { throw null; } } public T7 Item7 { get { throw null; } } public TRest Rest { get { throw null; } } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object obj) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public abstract partial class Type : System.Reflection.MemberInfo, System.Reflection.IReflect { public static readonly char Delimiter; public static readonly System.Type[] EmptyTypes; public static readonly System.Reflection.MemberFilter FilterAttribute; public static readonly System.Reflection.MemberFilter FilterName; public static readonly System.Reflection.MemberFilter FilterNameIgnoreCase; public static readonly object Missing; protected Type() { } public abstract System.Reflection.Assembly Assembly { get; } public abstract string AssemblyQualifiedName { get; } public System.Reflection.TypeAttributes Attributes { get { throw null; } } public abstract System.Type BaseType { get; } public virtual bool ContainsGenericParameters { get { throw null; } } public virtual System.Reflection.MethodBase DeclaringMethod { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public static System.Reflection.Binder DefaultBinder { get { throw null; } } public abstract string FullName { get; } public virtual System.Reflection.GenericParameterAttributes GenericParameterAttributes { get { throw null; } } public virtual int GenericParameterPosition { get { throw null; } } public virtual System.Type[] GenericTypeArguments { get { throw null; } } public abstract System.Guid GUID { get; } public bool HasElementType { get { throw null; } } public bool IsAbstract { get { throw null; } } public bool IsAnsiClass { get { throw null; } } public bool IsArray { get { throw null; } } public bool IsAutoClass { get { throw null; } } public bool IsAutoLayout { get { throw null; } } public bool IsByRef { get { throw null; } } public virtual bool IsByRefLike { get { throw null; } } public bool IsClass { get { throw null; } } public virtual bool IsCollectible { get { throw null; } } public bool IsCOMObject { get { throw null; } } public virtual bool IsConstructedGenericType { get { throw null; } } public bool IsContextful { get { throw null; } } public virtual bool IsEnum { get { throw null; } } public bool IsExplicitLayout { get { throw null; } } public virtual bool IsGenericMethodParameter { get { throw null; } } public virtual bool IsGenericParameter { get { throw null; } } public virtual bool IsGenericType { get { throw null; } } public virtual bool IsGenericTypeDefinition { get { throw null; } } public virtual bool IsGenericTypeParameter { get { throw null; } } public bool IsImport { get { throw null; } } public bool IsInterface { get { throw null; } } public bool IsLayoutSequential { get { throw null; } } public bool IsMarshalByRef { get { throw null; } } public bool IsNested { get { throw null; } } public bool IsNestedAssembly { get { throw null; } } public bool IsNestedFamANDAssem { get { throw null; } } public bool IsNestedFamily { get { throw null; } } public bool IsNestedFamORAssem { get { throw null; } } public bool IsNestedPrivate { get { throw null; } } public bool IsNestedPublic { get { throw null; } } public bool IsNotPublic { get { throw null; } } public bool IsPointer { get { throw null; } } public bool IsPrimitive { get { throw null; } } public bool IsPublic { get { throw null; } } public bool IsSealed { get { throw null; } } public virtual bool IsSecurityCritical { get { throw null; } } public virtual bool IsSecuritySafeCritical { get { throw null; } } public virtual bool IsSecurityTransparent { get { throw null; } } public virtual bool IsSerializable { get { throw null; } } public virtual bool IsSignatureType { get { throw null; } } public bool IsSpecialName { get { throw null; } } public virtual bool IsSZArray { get { throw null; } } public virtual bool IsTypeDefinition { get { throw null; } } public bool IsUnicodeClass { get { throw null; } } public bool IsValueType { get { throw null; } } public virtual bool IsVariableBoundArray { get { throw null; } } public bool IsVisible { get { throw null; } } public override System.Reflection.MemberTypes MemberType { get { throw null; } } public abstract new System.Reflection.Module Module { get; } public abstract string Namespace { get; } public override System.Type ReflectedType { get { throw null; } } public virtual System.Runtime.InteropServices.StructLayoutAttribute StructLayoutAttribute { get { throw null; } } public virtual System.RuntimeTypeHandle TypeHandle { get { throw null; } } public System.Reflection.ConstructorInfo TypeInitializer { get { throw null; } } public abstract System.Type UnderlyingSystemType { get; } public override bool Equals(object o) { throw null; } public virtual bool Equals(System.Type o) { throw null; } public virtual System.Type[] FindInterfaces(System.Reflection.TypeFilter filter, object filterCriteria) { throw null; } public virtual System.Reflection.MemberInfo[] FindMembers(System.Reflection.MemberTypes memberType, System.Reflection.BindingFlags bindingAttr, System.Reflection.MemberFilter filter, object filterCriteria) { throw null; } public virtual int GetArrayRank() { throw null; } protected abstract System.Reflection.TypeAttributes GetAttributeFlagsImpl(); public System.Reflection.ConstructorInfo GetConstructor(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.ConstructorInfo GetConstructor(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.ConstructorInfo GetConstructor(System.Type[] types) { throw null; } protected abstract System.Reflection.ConstructorInfo GetConstructorImpl(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); public System.Reflection.ConstructorInfo[] GetConstructors() { throw null; } public abstract System.Reflection.ConstructorInfo[] GetConstructors(System.Reflection.BindingFlags bindingAttr); public virtual System.Reflection.MemberInfo[] GetDefaultMembers() { throw null; } public abstract System.Type GetElementType(); public virtual string GetEnumName(object value) { throw null; } public virtual string[] GetEnumNames() { throw null; } public virtual System.Type GetEnumUnderlyingType() { throw null; } public virtual System.Array GetEnumValues() { throw null; } public System.Reflection.EventInfo GetEvent(string name) { throw null; } public abstract System.Reflection.EventInfo GetEvent(string name, System.Reflection.BindingFlags bindingAttr); public virtual System.Reflection.EventInfo[] GetEvents() { throw null; } public abstract System.Reflection.EventInfo[] GetEvents(System.Reflection.BindingFlags bindingAttr); public System.Reflection.FieldInfo GetField(string name) { throw null; } public abstract System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr); public System.Reflection.FieldInfo[] GetFields() { throw null; } public abstract System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr); public virtual System.Type[] GetGenericArguments() { throw null; } public virtual System.Type[] GetGenericParameterConstraints() { throw null; } public virtual System.Type GetGenericTypeDefinition() { throw null; } public override int GetHashCode() { throw null; } public System.Type GetInterface(string name) { throw null; } public abstract System.Type GetInterface(string name, bool ignoreCase); public virtual System.Reflection.InterfaceMapping GetInterfaceMap(System.Type interfaceType) { throw null; } public abstract System.Type[] GetInterfaces(); public System.Reflection.MemberInfo[] GetMember(string name) { throw null; } public virtual System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public virtual System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.MemberTypes type, System.Reflection.BindingFlags bindingAttr) { throw null; } public System.Reflection.MemberInfo[] GetMembers() { throw null; } public abstract System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr); public System.Reflection.MethodInfo GetMethod(string name) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, int genericParameterCount, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, int genericParameterCount, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, int genericParameterCount, System.Type[] types) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, int genericParameterCount, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, System.Type[] types) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } protected virtual System.Reflection.MethodInfo GetMethodImpl(string name, int genericParameterCount, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } protected abstract System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); public System.Reflection.MethodInfo[] GetMethods() { throw null; } public abstract System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr); public System.Type GetNestedType(string name) { throw null; } public abstract System.Type GetNestedType(string name, System.Reflection.BindingFlags bindingAttr); public System.Type[] GetNestedTypes() { throw null; } public abstract System.Type[] GetNestedTypes(System.Reflection.BindingFlags bindingAttr); public System.Reflection.PropertyInfo[] GetProperties() { throw null; } public abstract System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr); public System.Reflection.PropertyInfo GetProperty(string name) { throw null; } public System.Reflection.PropertyInfo GetProperty(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public System.Reflection.PropertyInfo GetProperty(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.PropertyInfo GetProperty(string name, System.Type returnType) { throw null; } public System.Reflection.PropertyInfo GetProperty(string name, System.Type returnType, System.Type[] types) { throw null; } public System.Reflection.PropertyInfo GetProperty(string name, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.PropertyInfo GetProperty(string name, System.Type[] types) { throw null; } protected abstract System.Reflection.PropertyInfo GetPropertyImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); public new System.Type GetType() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Type GetType(string typeName) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Type GetType(string typeName, bool throwOnError) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Type GetType(string typeName, bool throwOnError, bool ignoreCase) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Type GetType(string typeName, System.Func assemblyResolver, System.Func typeResolver) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Type GetType(string typeName, System.Func assemblyResolver, System.Func typeResolver, bool throwOnError) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Type GetType(string typeName, System.Func assemblyResolver, System.Func typeResolver, bool throwOnError, bool ignoreCase) { throw null; } public static System.Type[] GetTypeArray(object[] args) { throw null; } public static System.TypeCode GetTypeCode(System.Type type) { throw null; } protected virtual System.TypeCode GetTypeCodeImpl() { throw null; } public static System.Type GetTypeFromCLSID(System.Guid clsid) { throw null; } public static System.Type GetTypeFromCLSID(System.Guid clsid, bool throwOnError) { throw null; } public static System.Type GetTypeFromCLSID(System.Guid clsid, string server) { throw null; } public static System.Type GetTypeFromCLSID(System.Guid clsid, string server, bool throwOnError) { throw null; } public static System.Type GetTypeFromHandle(System.RuntimeTypeHandle handle) { throw null; } public static System.Type GetTypeFromProgID(string progID) { throw null; } public static System.Type GetTypeFromProgID(string progID, bool throwOnError) { throw null; } public static System.Type GetTypeFromProgID(string progID, string server) { throw null; } public static System.Type GetTypeFromProgID(string progID, string server, bool throwOnError) { throw null; } public static System.RuntimeTypeHandle GetTypeHandle(object o) { throw null; } protected abstract bool HasElementTypeImpl(); [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args) { throw null; } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Globalization.CultureInfo culture) { throw null; } public abstract object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters); protected abstract bool IsArrayImpl(); public virtual bool IsAssignableFrom(System.Type c) { throw null; } protected abstract bool IsByRefImpl(); protected abstract bool IsCOMObjectImpl(); protected virtual bool IsContextfulImpl() { throw null; } public virtual bool IsEnumDefined(object value) { throw null; } public virtual bool IsEquivalentTo(System.Type other) { throw null; } public virtual bool IsInstanceOfType(object o) { throw null; } protected virtual bool IsMarshalByRefImpl() { throw null; } protected abstract bool IsPointerImpl(); protected abstract bool IsPrimitiveImpl(); public virtual bool IsSubclassOf(System.Type c) { throw null; } protected virtual bool IsValueTypeImpl() { throw null; } public virtual System.Type MakeArrayType() { throw null; } public virtual System.Type MakeArrayType(int rank) { throw null; } public virtual System.Type MakeByRefType() { throw null; } public static System.Type MakeGenericMethodParameter(int position) { throw null; } public static System.Type MakeGenericSignatureType(System.Type genericTypeDefinition, params System.Type[] typeArguments) { throw null; } public virtual System.Type MakeGenericType(params System.Type[] typeArguments) { throw null; } public virtual System.Type MakePointerType() { throw null; } public static bool operator ==(System.Type left, System.Type right) { throw null; } public static bool operator !=(System.Type left, System.Type right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Type ReflectionOnlyGetType(string typeName, bool throwIfNotFound, bool ignoreCase) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class TypeAccessException : System.TypeLoadException { public TypeAccessException() { } protected TypeAccessException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TypeAccessException(string message) { } public TypeAccessException(string message, System.Exception inner) { } } public enum TypeCode { Boolean = 3, Byte = 6, Char = 4, DateTime = 16, DBNull = 2, Decimal = 15, Double = 14, Empty = 0, Int16 = 7, Int32 = 9, Int64 = 11, Object = 1, SByte = 5, Single = 13, String = 18, UInt16 = 8, UInt32 = 10, UInt64 = 12, } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public ref partial struct TypedReference { private int _dummyPrimitive; public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public static System.Type GetTargetType(System.TypedReference value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Security.SecurityCriticalAttribute] public static System.TypedReference MakeTypedReference(object target, System.Reflection.FieldInfo[] flds) { throw null; } [System.CLSCompliantAttribute(false)] [System.Security.SecuritySafeCriticalAttribute] public static void SetTypedReference(System.TypedReference target, object value) { } public static System.RuntimeTypeHandle TargetTypeToken(System.TypedReference value) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static object ToObject(System.TypedReference value) { throw null; } } [System.SerializableAttribute] public sealed partial class TypeInitializationException : System.SystemException { public TypeInitializationException(string fullTypeName, System.Exception innerException) { } public string TypeName { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class TypeLoadException : System.SystemException, System.Runtime.Serialization.ISerializable { public TypeLoadException() { } protected TypeLoadException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TypeLoadException(string message) { } public TypeLoadException(string message, System.Exception inner) { } public override string Message { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } } public string TypeName { get { throw null; } } [System.Security.SecurityCriticalAttribute] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public partial class TypeUnloadedException : System.SystemException { public TypeUnloadedException() { } protected TypeUnloadedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TypeUnloadedException(string message) { } public TypeUnloadedException(string message, System.Exception innerException) { } } [System.CLSCompliantAttribute(false)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct UInt16 : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly ushort _dummyPrimitive; public const ushort MaxValue = (ushort)65535; public const ushort MinValue = (ushort)0; public int CompareTo(object value) { throw null; } public int CompareTo(System.UInt16 value) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.UInt16 obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt16 Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt16 Parse(string s) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt16 Parse(string s, System.Globalization.NumberStyles style) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt16 Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt16 Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } System.UInt16 System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.UInt16 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, out System.UInt16 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.UInt16 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, out System.UInt16 result) { throw null; } } [System.CLSCompliantAttribute(false)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct UInt32 : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly uint _dummyPrimitive; public const uint MaxValue = (uint)4294967295; public const uint MinValue = (uint)0; public int CompareTo(object value) { throw null; } public int CompareTo(System.UInt32 value) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.UInt32 obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt32 Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt32 Parse(string s) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt32 Parse(string s, System.Globalization.NumberStyles style) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt32 Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt32 Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } System.UInt32 System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.UInt32 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, out System.UInt32 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.UInt32 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, out System.UInt32 result) { throw null; } } [System.CLSCompliantAttribute(false)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct UInt64 : System.IComparable, System.IComparable, System.IConvertible, System.IEquatable, System.IFormattable { private readonly ulong _dummyPrimitive; public const ulong MaxValue = (ulong)18446744073709551615; public const ulong MinValue = (ulong)0; public int CompareTo(object value) { throw null; } public int CompareTo(System.UInt64 value) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.UInt64 obj) { throw null; } public override int GetHashCode() { throw null; } public System.TypeCode GetTypeCode() { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt64 Parse(System.ReadOnlySpan s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt64 Parse(string s) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt64 Parse(string s, System.Globalization.NumberStyles style) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt64 Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; } [System.CLSCompliantAttribute(false)] public static System.UInt64 Parse(string s, System.IFormatProvider provider) { throw null; } bool System.IConvertible.ToBoolean(System.IFormatProvider provider) { throw null; } byte System.IConvertible.ToByte(System.IFormatProvider provider) { throw null; } char System.IConvertible.ToChar(System.IFormatProvider provider) { throw null; } System.DateTime System.IConvertible.ToDateTime(System.IFormatProvider provider) { throw null; } decimal System.IConvertible.ToDecimal(System.IFormatProvider provider) { throw null; } double System.IConvertible.ToDouble(System.IFormatProvider provider) { throw null; } short System.IConvertible.ToInt16(System.IFormatProvider provider) { throw null; } int System.IConvertible.ToInt32(System.IFormatProvider provider) { throw null; } long System.IConvertible.ToInt64(System.IFormatProvider provider) { throw null; } sbyte System.IConvertible.ToSByte(System.IFormatProvider provider) { throw null; } float System.IConvertible.ToSingle(System.IFormatProvider provider) { throw null; } object System.IConvertible.ToType(System.Type type, System.IFormatProvider provider) { throw null; } ushort System.IConvertible.ToUInt16(System.IFormatProvider provider) { throw null; } uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; } System.UInt64 System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; } public override string ToString() { throw null; } public string ToString(System.IFormatProvider provider) { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider provider) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten, System.ReadOnlySpan format = default(System.ReadOnlySpan), System.IFormatProvider provider = null) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.UInt64 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan s, out System.UInt64 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.UInt64 result) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(string s, out System.UInt64 result) { throw null; } } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct UIntPtr : System.IEquatable, System.Runtime.Serialization.ISerializable { private readonly int _dummyPrimitive; public static readonly System.UIntPtr Zero; public UIntPtr(uint value) { throw null; } public UIntPtr(ulong value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe UIntPtr(void* value) { throw null; } public static int Size { get { throw null; } } public static System.UIntPtr Add(System.UIntPtr pointer, int offset) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static System.UIntPtr operator +(System.UIntPtr pointer, int offset) { throw null; } public static bool operator ==(System.UIntPtr value1, System.UIntPtr value2) { throw null; } public static explicit operator System.UIntPtr (uint value) { throw null; } public static explicit operator System.UIntPtr (ulong value) { throw null; } public static explicit operator uint (System.UIntPtr value) { throw null; } public static explicit operator ulong (System.UIntPtr value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe static explicit operator void* (System.UIntPtr value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe static explicit operator System.UIntPtr (void* value) { throw null; } public static bool operator !=(System.UIntPtr value1, System.UIntPtr value2) { throw null; } public static System.UIntPtr operator -(System.UIntPtr pointer, int offset) { throw null; } public static System.UIntPtr Subtract(System.UIntPtr pointer, int offset) { throw null; } bool System.IEquatable.Equals(System.UIntPtr other) { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.CLSCompliantAttribute(false)] public unsafe void* ToPointer() { throw null; } public override string ToString() { throw null; } public uint ToUInt32() { throw null; } public ulong ToUInt64() { throw null; } } [System.SerializableAttribute] public partial class UnauthorizedAccessException : System.SystemException { public UnauthorizedAccessException() { } protected UnauthorizedAccessException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public UnauthorizedAccessException(string message) { } public UnauthorizedAccessException(string message, System.Exception inner) { } } [System.SerializableAttribute] public partial class UnhandledExceptionEventArgs : System.EventArgs { public UnhandledExceptionEventArgs(object exception, bool isTerminating) { } public object ExceptionObject { get { throw null; } } public bool IsTerminating { get { throw null; } } } [System.SerializableAttribute] public delegate void UnhandledExceptionEventHandler(object sender, System.UnhandledExceptionEventArgs e); [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Size=1)] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable, System.IEquatable, System.Runtime.CompilerServices.ITuple { object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public static System.ValueTuple Create() { throw null; } public static System.ValueTuple Create(T1 item1) { throw null; } public static System.ValueTuple Create(T1 item1, T2 item2) { throw null; } public static System.ValueTuple Create(T1 item1, T2 item2, T3 item3) { throw null; } public static System.ValueTuple Create(T1 item1, T2 item2, T3 item3, T4 item4) { throw null; } public static System.ValueTuple Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5) { throw null; } public static System.ValueTuple Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6) { throw null; } public static System.ValueTuple Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7) { throw null; } public static System.ValueTuple> Create(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, T8 item8) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple { public T1 Item1; public ValueTuple(T1 item1) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple { public T1 Item1; public T2 Item2; public ValueTuple(T1 item1, T2 item2) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple { public T1 Item1; public T2 Item2; public T3 Item3; public ValueTuple(T1 item1, T2 item2, T3 item3) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple { public T1 Item1; public T2 Item2; public T3 Item3; public T4 Item4; public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple { public T1 Item1; public T2 Item2; public T3 Item3; public T4 Item4; public T5 Item5; public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple { public T1 Item1; public T2 Item2; public T3 Item3; public T4 Item4; public T5 Item5; public T6 Item6; public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple { public T1 Item1; public T2 Item2; public T3 Item3; public T4 Item4; public T5 Item5; public T6 Item6; public T7 Item7; public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial struct ValueTuple : System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.IComparable, System.IComparable>, System.IEquatable>, System.Runtime.CompilerServices.ITuple where TRest : struct { public T1 Item1; public T2 Item2; public T3 Item3; public T4 Item4; public T5 Item5; public T6 Item6; public T7 Item7; public TRest Rest; public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, TRest rest) { throw null; } object System.Runtime.CompilerServices.ITuple.this[int index] { get { throw null; } } int System.Runtime.CompilerServices.ITuple.Length { get { throw null; } } public int CompareTo(System.ValueTuple other) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.ValueTuple other) { throw null; } public override int GetHashCode() { throw null; } int System.Collections.IStructuralComparable.CompareTo(object other, System.Collections.IComparer comparer) { throw null; } bool System.Collections.IStructuralEquatable.Equals(object other, System.Collections.IEqualityComparer comparer) { throw null; } int System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer comparer) { throw null; } int System.IComparable.CompareTo(object other) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class ValueType { protected ValueType() { } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public sealed partial class Version : System.ICloneable, System.IComparable, System.IComparable, System.IEquatable { public Version() { } public Version(int major, int minor) { } public Version(int major, int minor, int build) { } public Version(int major, int minor, int build, int revision) { } public Version(string version) { } public int Build { get { throw null; } } public int Major { get { throw null; } } public short MajorRevision { get { throw null; } } public int Minor { get { throw null; } } public short MinorRevision { get { throw null; } } public int Revision { get { throw null; } } public object Clone() { throw null; } public int CompareTo(object version) { throw null; } public int CompareTo(System.Version value) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.Version obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Version v1, System.Version v2) { throw null; } public static bool operator >(System.Version v1, System.Version v2) { throw null; } public static bool operator >=(System.Version v1, System.Version v2) { throw null; } public static bool operator !=(System.Version v1, System.Version v2) { throw null; } public static bool operator <(System.Version v1, System.Version v2) { throw null; } public static bool operator <=(System.Version v1, System.Version v2) { throw null; } public static System.Version Parse(System.ReadOnlySpan input) { throw null; } public static System.Version Parse(string input) { throw null; } public override string ToString() { throw null; } public string ToString(int fieldCount) { throw null; } public bool TryFormat(System.Span destination, int fieldCount, out int charsWritten) { throw null; } public bool TryFormat(System.Span destination, out int charsWritten) { throw null; } public static bool TryParse(System.ReadOnlySpan input, out System.Version result) { throw null; } public static bool TryParse(string input, out System.Version result) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Size=1)] public partial struct Void { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class WeakReference : System.Runtime.Serialization.ISerializable { public WeakReference(object target) { } public WeakReference(object target, bool trackResurrection) { } protected WeakReference(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual bool IsAlive { get { throw null; } } public virtual object Target { get { throw null; } set { } } public virtual bool TrackResurrection { get { throw null; } } ~WeakReference() { } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public sealed partial class WeakReference : System.Runtime.Serialization.ISerializable where T : class { public WeakReference(T target) { } public WeakReference(T target, bool trackResurrection) { } ~WeakReference() { } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public void SetTarget(T target) { } public bool TryGetTarget(out T target) { throw null; } } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("05F696DC-2B29-3663-AD8B-C4389CF2A713")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface _AppDomain { string BaseDirectory { get; } string DynamicDirectory { get; } string FriendlyName { get; } string RelativeSearchPath { get; } bool ShadowCopyFiles { get; } event System.AssemblyLoadEventHandler AssemblyLoad; event System.ResolveEventHandler AssemblyResolve; event System.EventHandler DomainUnload; event System.EventHandler ProcessExit; event System.ResolveEventHandler ResourceResolve; event System.ResolveEventHandler TypeResolve; event System.UnhandledExceptionEventHandler UnhandledException; [System.Security.SecurityCriticalAttribute] void AppendPrivatePath(string path); [System.Security.SecurityCriticalAttribute] void ClearPrivatePath(); [System.Security.SecurityCriticalAttribute] void ClearShadowCopyPath(); System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName); System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes); System.Runtime.Remoting.ObjectHandle CreateInstance(string assemblyName, string typeName, object[] activationAttributes); System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName); System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes, System.Security.Policy.Evidence securityAttributes); System.Runtime.Remoting.ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName, object[] activationAttributes); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Security.Policy.Evidence evidence); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Security.Policy.Evidence evidence, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.Policy.Evidence evidence); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.Policy.Evidence evidence, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions); System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, string dir, System.Security.Policy.Evidence evidence, System.Security.PermissionSet requiredPermissions, System.Security.PermissionSet optionalPermissions, System.Security.PermissionSet refusedPermissions, bool isSynchronized); void DoCallBack(System.CrossAppDomainDelegate theDelegate); bool Equals(object other); int ExecuteAssembly(string assemblyFile); int ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity); int ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity, string[] args); System.Reflection.Assembly[] GetAssemblies(); object GetData(string name); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); [System.Security.SecurityCriticalAttribute] object GetLifetimeService(); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); [System.Security.SecurityCriticalAttribute] object InitializeLifetimeService(); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); System.Reflection.Assembly Load(byte[] rawAssembly); System.Reflection.Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore); System.Reflection.Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore, System.Security.Policy.Evidence securityEvidence); System.Reflection.Assembly Load(System.Reflection.AssemblyName assemblyRef); System.Reflection.Assembly Load(System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity); System.Reflection.Assembly Load(string assemblyString); System.Reflection.Assembly Load(string assemblyString, System.Security.Policy.Evidence assemblySecurity); [System.Security.SecurityCriticalAttribute] void SetCachePath(string s); [System.Security.SecurityCriticalAttribute] void SetData(string name, object data); [System.Security.SecurityCriticalAttribute] void SetShadowCopyPath(string s); string ToString(); } } namespace System.Buffers { public abstract partial class ArrayPool { protected ArrayPool() { } public static System.Buffers.ArrayPool Shared { get { throw null; } } public static System.Buffers.ArrayPool Create() { throw null; } public static System.Buffers.ArrayPool Create(int maxArrayLength, int maxArraysPerBucket) { throw null; } public abstract T[] Rent(int minimumLength); public abstract void Return(T[] array, bool clearArray = false); } public static partial class BuffersExtensions { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void CopyTo(this [System.Runtime.InteropServices.In]in System.Buffers.ReadOnlySequence source, System.Span destination) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Nullable PositionOf(this [System.Runtime.InteropServices.In]in System.Buffers.ReadOnlySequence source, T value) where T : System.IEquatable { throw null; } public static T[] ToArray(this [System.Runtime.InteropServices.In]in System.Buffers.ReadOnlySequence sequence) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void Write(this System.Buffers.IBufferWriter writer, System.ReadOnlySpan value) { } } public partial interface IBufferWriter { void Advance(int count); System.Memory GetMemory(int sizeHint = 0); System.Span GetSpan(int sizeHint = 0); } public partial interface IMemoryOwner : System.IDisposable { System.Memory Memory { get; } } public partial interface IPinnable { System.Buffers.MemoryHandle Pin(int elementIndex); void Unpin(); } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct MemoryHandle : System.IDisposable { private object _dummy; private int _dummyPrimitive; [System.CLSCompliantAttribute(false)] public unsafe MemoryHandle(void* pointer, System.Runtime.InteropServices.GCHandle handle = default(System.Runtime.InteropServices.GCHandle), System.Buffers.IPinnable pinnable = null) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe void* Pointer { get { throw null; } } public void Dispose() { } } public abstract partial class MemoryManager : System.Buffers.IMemoryOwner, System.Buffers.IPinnable, System.IDisposable { protected MemoryManager() { } public virtual System.Memory Memory { get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]protected System.Memory CreateMemory(int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]protected System.Memory CreateMemory(int start, int length) { throw null; } protected abstract void Dispose(bool disposing); public abstract System.Span GetSpan(); public abstract System.Buffers.MemoryHandle Pin(int elementIndex = 0); void System.IDisposable.Dispose() { } protected internal virtual bool TryGetArray(out System.ArraySegment segment) { throw null; } public abstract void Unpin(); } public abstract partial class MemoryPool : System.IDisposable { protected MemoryPool() { } public abstract int MaxBufferSize { get; } public static System.Buffers.MemoryPool Shared { get { throw null; } } public void Dispose() { } protected abstract void Dispose(bool disposing); public abstract System.Buffers.IMemoryOwner Rent(int minBufferSize = -1); } public enum OperationStatus { DestinationTooSmall = 1, Done = 0, InvalidData = 3, NeedMoreData = 2, } public abstract partial class ReadOnlySequenceSegment { protected ReadOnlySequenceSegment() { } public System.ReadOnlyMemory Memory { get { throw null; } protected set { } } public System.Buffers.ReadOnlySequenceSegment Next { get { throw null; } protected set { } } public long RunningIndex { get { throw null; } protected set { } } } [System.Diagnostics.DebuggerDisplayAttribute("{ToString(),raw}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Buffers.ReadOnlySequenceDebugView")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ReadOnlySequence { private readonly object _dummy; public static readonly System.Buffers.ReadOnlySequence Empty; public ReadOnlySequence(System.Buffers.ReadOnlySequenceSegment startSegment, int startIndex, System.Buffers.ReadOnlySequenceSegment endSegment, int endIndex) { throw null; } public ReadOnlySequence(System.ReadOnlyMemory memory) { throw null; } public ReadOnlySequence(T[] array) { throw null; } public ReadOnlySequence(T[] array, int start, int length) { throw null; } public System.SequencePosition End { get { throw null; } } public System.ReadOnlyMemory First { get { throw null; } } public bool IsEmpty { get { throw null; } } public bool IsSingleSegment { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public long Length { get { throw null; } } public System.SequencePosition Start { get { throw null; } } public System.Buffers.ReadOnlySequence.Enumerator GetEnumerator() { throw null; } public System.SequencePosition GetPosition(long offset) { throw null; } public System.SequencePosition GetPosition(long offset, System.SequencePosition origin) { throw null; } public System.Buffers.ReadOnlySequence Slice(int start, int length) { throw null; } public System.Buffers.ReadOnlySequence Slice(int start, System.SequencePosition end) { throw null; } public System.Buffers.ReadOnlySequence Slice(long start) { throw null; } public System.Buffers.ReadOnlySequence Slice(long start, long length) { throw null; } public System.Buffers.ReadOnlySequence Slice(long start, System.SequencePosition end) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Buffers.ReadOnlySequence Slice(System.SequencePosition start) { throw null; } public System.Buffers.ReadOnlySequence Slice(System.SequencePosition start, int length) { throw null; } public System.Buffers.ReadOnlySequence Slice(System.SequencePosition start, long length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Buffers.ReadOnlySequence Slice(System.SequencePosition start, System.SequencePosition end) { throw null; } public override string ToString() { throw null; } public bool TryGet(ref System.SequencePosition position, out System.ReadOnlyMemory memory, bool advance = true) { throw null; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator { private object _dummy; public Enumerator([System.Runtime.InteropServices.In]in System.Buffers.ReadOnlySequence sequence) { throw null; } public System.ReadOnlyMemory Current { get { throw null; } } public bool MoveNext() { throw null; } } } public delegate void ReadOnlySpanAction(System.ReadOnlySpan span, TArg arg); public delegate void SpanAction(System.Span span, TArg arg); [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct StandardFormat : System.IEquatable { private readonly int _dummyPrimitive; public const byte MaxPrecision = (byte)99; public const byte NoPrecision = (byte)255; public StandardFormat(char symbol, byte precision = (byte)255) { throw null; } public bool HasPrecision { get { throw null; } } public bool IsDefault { get { throw null; } } public byte Precision { get { throw null; } } public char Symbol { get { throw null; } } public bool Equals(System.Buffers.StandardFormat other) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Buffers.StandardFormat left, System.Buffers.StandardFormat right) { throw null; } public static implicit operator System.Buffers.StandardFormat (char symbol) { throw null; } public static bool operator !=(System.Buffers.StandardFormat left, System.Buffers.StandardFormat right) { throw null; } public static System.Buffers.StandardFormat Parse(System.ReadOnlySpan format) { throw null; } public static System.Buffers.StandardFormat Parse(string format) { throw null; } public override string ToString() { throw null; } } } namespace System.Buffers.Binary { public static partial class BinaryPrimitives { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static short ReadInt16BigEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static short ReadInt16LittleEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int ReadInt32BigEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int ReadInt32LittleEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static long ReadInt64BigEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static long ReadInt64LittleEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ushort ReadUInt16BigEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ushort ReadUInt16LittleEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static uint ReadUInt32BigEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static uint ReadUInt32LittleEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ulong ReadUInt64BigEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ulong ReadUInt64LittleEndian(System.ReadOnlySpan source) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static byte ReverseEndianness(byte value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static short ReverseEndianness(short value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int ReverseEndianness(int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static long ReverseEndianness(long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static sbyte ReverseEndianness(sbyte value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ushort ReverseEndianness(ushort value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static uint ReverseEndianness(uint value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static ulong ReverseEndianness(ulong value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryReadInt16BigEndian(System.ReadOnlySpan source, out short value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryReadInt16LittleEndian(System.ReadOnlySpan source, out short value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryReadInt32BigEndian(System.ReadOnlySpan source, out int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryReadInt32LittleEndian(System.ReadOnlySpan source, out int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryReadInt64BigEndian(System.ReadOnlySpan source, out long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryReadInt64LittleEndian(System.ReadOnlySpan source, out long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryReadUInt16BigEndian(System.ReadOnlySpan source, out ushort value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryReadUInt16LittleEndian(System.ReadOnlySpan source, out ushort value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryReadUInt32BigEndian(System.ReadOnlySpan source, out uint value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryReadUInt32LittleEndian(System.ReadOnlySpan source, out uint value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryReadUInt64BigEndian(System.ReadOnlySpan source, out ulong value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryReadUInt64LittleEndian(System.ReadOnlySpan source, out ulong value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryWriteInt16BigEndian(System.Span destination, short value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryWriteInt16LittleEndian(System.Span destination, short value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryWriteInt32BigEndian(System.Span destination, int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryWriteInt32LittleEndian(System.Span destination, int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryWriteInt64BigEndian(System.Span destination, long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryWriteInt64LittleEndian(System.Span destination, long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryWriteUInt16BigEndian(System.Span destination, ushort value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryWriteUInt16LittleEndian(System.Span destination, ushort value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryWriteUInt32BigEndian(System.Span destination, uint value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryWriteUInt32LittleEndian(System.Span destination, uint value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryWriteUInt64BigEndian(System.Span destination, ulong value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static bool TryWriteUInt64LittleEndian(System.Span destination, ulong value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void WriteInt16BigEndian(System.Span destination, short value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void WriteInt16LittleEndian(System.Span destination, short value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void WriteInt32BigEndian(System.Span destination, int value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void WriteInt32LittleEndian(System.Span destination, int value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void WriteInt64BigEndian(System.Span destination, long value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void WriteInt64LittleEndian(System.Span destination, long value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static void WriteUInt16BigEndian(System.Span destination, ushort value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static void WriteUInt16LittleEndian(System.Span destination, ushort value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static void WriteUInt32BigEndian(System.Span destination, uint value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static void WriteUInt32LittleEndian(System.Span destination, uint value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static void WriteUInt64BigEndian(System.Span destination, ulong value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static void WriteUInt64LittleEndian(System.Span destination, ulong value) { } } } namespace System.Buffers.Text { public static partial class Base64 { public static System.Buffers.OperationStatus DecodeFromUtf8(System.ReadOnlySpan utf8, System.Span bytes, out int bytesConsumed, out int bytesWritten, bool isFinalBlock = true) { throw null; } public static System.Buffers.OperationStatus DecodeFromUtf8InPlace(System.Span buffer, out int bytesWritten) { throw null; } public static System.Buffers.OperationStatus EncodeToUtf8(System.ReadOnlySpan bytes, System.Span utf8, out int bytesConsumed, out int bytesWritten, bool isFinalBlock = true) { throw null; } public static System.Buffers.OperationStatus EncodeToUtf8InPlace(System.Span buffer, int dataLength, out int bytesWritten) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int GetMaxDecodedFromUtf8Length(int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static int GetMaxEncodedToUtf8Length(int length) { throw null; } } public static partial class Utf8Formatter { public static bool TryFormat(bool value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(byte value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(System.DateTime value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(System.DateTimeOffset value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(decimal value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(double value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(System.Guid value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(short value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(int value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(long value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryFormat(sbyte value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(float value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } public static bool TryFormat(System.TimeSpan value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryFormat(ushort value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryFormat(uint value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryFormat(ulong value, System.Span destination, out int bytesWritten, System.Buffers.StandardFormat format = default(System.Buffers.StandardFormat)) { throw null; } } public static partial class Utf8Parser { public static bool TryParse(System.ReadOnlySpan source, out bool value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out byte value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out System.DateTime value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out System.DateTimeOffset value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out decimal value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out double value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out System.Guid value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out short value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out int value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out long value, out int bytesConsumed, char standardFormat = '\0') { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan source, out sbyte value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out float value, out int bytesConsumed, char standardFormat = '\0') { throw null; } public static bool TryParse(System.ReadOnlySpan source, out System.TimeSpan value, out int bytesConsumed, char standardFormat = '\0') { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan source, out ushort value, out int bytesConsumed, char standardFormat = '\0') { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan source, out uint value, out int bytesConsumed, char standardFormat = '\0') { throw null; } [System.CLSCompliantAttribute(false)] public static bool TryParse(System.ReadOnlySpan source, out ulong value, out int bytesConsumed, char standardFormat = '\0') { throw null; } } } namespace System.Collections { [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.ArrayList.ArrayListDebugView")] [System.SerializableAttribute] public partial class ArrayList : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ICloneable { public ArrayList() { } public ArrayList(System.Collections.ICollection c) { } public ArrayList(int capacity) { } public virtual int Capacity { get { throw null; } set { } } public virtual int Count { get { throw null; } } public virtual bool IsFixedSize { get { throw null; } } public virtual bool IsReadOnly { get { throw null; } } public virtual bool IsSynchronized { get { throw null; } } public virtual object this[int index] { get { throw null; } set { } } public virtual object SyncRoot { get { throw null; } } public static System.Collections.ArrayList Adapter(System.Collections.IList list) { throw null; } public virtual int Add(object value) { throw null; } public virtual void AddRange(System.Collections.ICollection c) { } public virtual int BinarySearch(int index, int count, object value, System.Collections.IComparer comparer) { throw null; } public virtual int BinarySearch(object value) { throw null; } public virtual int BinarySearch(object value, System.Collections.IComparer comparer) { throw null; } public virtual void Clear() { } public virtual object Clone() { throw null; } public virtual bool Contains(object item) { throw null; } public virtual void CopyTo(System.Array array) { } public virtual void CopyTo(System.Array array, int arrayIndex) { } public virtual void CopyTo(int index, System.Array array, int arrayIndex, int count) { } public static System.Collections.ArrayList FixedSize(System.Collections.ArrayList list) { throw null; } public static System.Collections.IList FixedSize(System.Collections.IList list) { throw null; } public virtual System.Collections.IEnumerator GetEnumerator() { throw null; } public virtual System.Collections.IEnumerator GetEnumerator(int index, int count) { throw null; } public virtual System.Collections.ArrayList GetRange(int index, int count) { throw null; } public virtual int IndexOf(object value) { throw null; } public virtual int IndexOf(object value, int startIndex) { throw null; } public virtual int IndexOf(object value, int startIndex, int count) { throw null; } public virtual void Insert(int index, object value) { } public virtual void InsertRange(int index, System.Collections.ICollection c) { } public virtual int LastIndexOf(object value) { throw null; } public virtual int LastIndexOf(object value, int startIndex) { throw null; } public virtual int LastIndexOf(object value, int startIndex, int count) { throw null; } public static System.Collections.ArrayList ReadOnly(System.Collections.ArrayList list) { throw null; } public static System.Collections.IList ReadOnly(System.Collections.IList list) { throw null; } public virtual void Remove(object obj) { } public virtual void RemoveAt(int index) { } public virtual void RemoveRange(int index, int count) { } public static System.Collections.ArrayList Repeat(object value, int count) { throw null; } public virtual void Reverse() { } public virtual void Reverse(int index, int count) { } public virtual void SetRange(int index, System.Collections.ICollection c) { } public virtual void Sort() { } public virtual void Sort(System.Collections.IComparer comparer) { } public virtual void Sort(int index, int count, System.Collections.IComparer comparer) { } public static System.Collections.ArrayList Synchronized(System.Collections.ArrayList list) { throw null; } public static System.Collections.IList Synchronized(System.Collections.IList list) { throw null; } public virtual object[] ToArray() { throw null; } public virtual System.Array ToArray(System.Type type) { throw null; } public virtual void TrimToSize() { } } [System.SerializableAttribute] public sealed partial class BitArray : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable { public BitArray(bool[] values) { } public BitArray(byte[] bytes) { } public BitArray(System.Collections.BitArray bits) { } public BitArray(int length) { } public BitArray(int length, bool defaultValue) { } public BitArray(int[] values) { } public int Count { get { throw null; } } public bool IsReadOnly { get { throw null; } } public bool IsSynchronized { get { throw null; } } public bool this[int index] { get { throw null; } set { } } public int Length { get { throw null; } set { } } public object SyncRoot { get { throw null; } } public System.Collections.BitArray And(System.Collections.BitArray value) { throw null; } public object Clone() { throw null; } public void CopyTo(System.Array array, int index) { } public bool Get(int index) { throw null; } public System.Collections.IEnumerator GetEnumerator() { throw null; } public System.Collections.BitArray LeftShift(int count) { throw null; } public System.Collections.BitArray Not() { throw null; } public System.Collections.BitArray Or(System.Collections.BitArray value) { throw null; } public System.Collections.BitArray RightShift(int count) { throw null; } public void Set(int index, bool value) { } public void SetAll(bool value) { } public System.Collections.BitArray Xor(System.Collections.BitArray value) { throw null; } } [System.SerializableAttribute] public partial class CaseInsensitiveComparer : System.Collections.IComparer { public CaseInsensitiveComparer() { } public CaseInsensitiveComparer(System.Globalization.CultureInfo culture) { } public static System.Collections.CaseInsensitiveComparer Default { get { throw null; } } public static System.Collections.CaseInsensitiveComparer DefaultInvariant { get { throw null; } } public int Compare(object a, object b) { throw null; } } [System.ObsoleteAttribute("Please use StringComparer instead.")] [System.SerializableAttribute] public partial class CaseInsensitiveHashCodeProvider : System.Collections.IHashCodeProvider { public CaseInsensitiveHashCodeProvider() { } public CaseInsensitiveHashCodeProvider(System.Globalization.CultureInfo culture) { } public static System.Collections.CaseInsensitiveHashCodeProvider Default { get { throw null; } } public static System.Collections.CaseInsensitiveHashCodeProvider DefaultInvariant { get { throw null; } } public int GetHashCode(object obj) { throw null; } } [System.SerializableAttribute] public abstract partial class CollectionBase : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList { protected CollectionBase() { } protected CollectionBase(int capacity) { } public int Capacity { get { throw null; } set { } } public int Count { get { throw null; } } protected System.Collections.ArrayList InnerList { get { throw null; } } protected System.Collections.IList List { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IList.IsFixedSize { get { throw null; } } bool System.Collections.IList.IsReadOnly { get { throw null; } } object System.Collections.IList.this[int index] { get { throw null; } set { } } public void Clear() { } public System.Collections.IEnumerator GetEnumerator() { throw null; } protected virtual void OnClear() { } protected virtual void OnClearComplete() { } protected virtual void OnInsert(int index, object value) { } protected virtual void OnInsertComplete(int index, object value) { } protected virtual void OnRemove(int index, object value) { } protected virtual void OnRemoveComplete(int index, object value) { } protected virtual void OnSet(int index, object oldValue, object newValue) { } protected virtual void OnSetComplete(int index, object oldValue, object newValue) { } protected virtual void OnValidate(object value) { } public void RemoveAt(int index) { } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } int System.Collections.IList.Add(object value) { throw null; } bool System.Collections.IList.Contains(object value) { throw null; } int System.Collections.IList.IndexOf(object value) { throw null; } void System.Collections.IList.Insert(int index, object value) { } void System.Collections.IList.Remove(object value) { } } [System.SerializableAttribute] public sealed partial class Comparer : System.Collections.IComparer, System.Runtime.Serialization.ISerializable { public static readonly System.Collections.Comparer Default; public static readonly System.Collections.Comparer DefaultInvariant; public Comparer(System.Globalization.CultureInfo culture) { } public int Compare(object a, object b) { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public abstract partial class DictionaryBase : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable { protected DictionaryBase() { } public int Count { get { throw null; } } protected System.Collections.IDictionary Dictionary { get { throw null; } } protected System.Collections.Hashtable InnerHashtable { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IDictionary.IsFixedSize { get { throw null; } } bool System.Collections.IDictionary.IsReadOnly { get { throw null; } } object System.Collections.IDictionary.this[object key] { get { throw null; } set { } } System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } } System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } } public void Clear() { } public void CopyTo(System.Array array, int index) { } public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; } protected virtual void OnClear() { } protected virtual void OnClearComplete() { } protected virtual object OnGet(object key, object currentValue) { throw null; } protected virtual void OnInsert(object key, object value) { } protected virtual void OnInsertComplete(object key, object value) { } protected virtual void OnRemove(object key, object value) { } protected virtual void OnRemoveComplete(object key, object value) { } protected virtual void OnSet(object key, object oldValue, object newValue) { } protected virtual void OnSetComplete(object key, object oldValue, object newValue) { } protected virtual void OnValidate(object key, object value) { } void System.Collections.IDictionary.Add(object key, object value) { } bool System.Collections.IDictionary.Contains(object key) { throw null; } void System.Collections.IDictionary.Remove(object key) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct DictionaryEntry { private object _dummy; public DictionaryEntry(object key, object value) { throw null; } public object Key { get { throw null; } set { } } public object Value { get { throw null; } set { } } public void Deconstruct(out object key, out object value) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Hashtable.HashtableDebugView")] [System.SerializableAttribute] public partial class Hashtable : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.ICloneable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { public Hashtable() { } public Hashtable(System.Collections.IDictionary d) { } public Hashtable(System.Collections.IDictionary d, System.Collections.IEqualityComparer equalityComparer) { } [System.ObsoleteAttribute("Please use Hashtable(IDictionary, IEqualityComparer) instead.")] public Hashtable(System.Collections.IDictionary d, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) { } public Hashtable(System.Collections.IDictionary d, float loadFactor) { } public Hashtable(System.Collections.IDictionary d, float loadFactor, System.Collections.IEqualityComparer equalityComparer) { } [System.ObsoleteAttribute("Please use Hashtable(IDictionary, float, IEqualityComparer) instead.")] public Hashtable(System.Collections.IDictionary d, float loadFactor, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) { } public Hashtable(System.Collections.IEqualityComparer equalityComparer) { } [System.ObsoleteAttribute("Please use Hashtable(IEqualityComparer) instead.")] public Hashtable(System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) { } public Hashtable(int capacity) { } public Hashtable(int capacity, System.Collections.IEqualityComparer equalityComparer) { } [System.ObsoleteAttribute("Please use Hashtable(int, IEqualityComparer) instead.")] public Hashtable(int capacity, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) { } public Hashtable(int capacity, float loadFactor) { } public Hashtable(int capacity, float loadFactor, System.Collections.IEqualityComparer equalityComparer) { } [System.ObsoleteAttribute("Please use Hashtable(int, float, IEqualityComparer) instead.")] public Hashtable(int capacity, float loadFactor, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) { } protected Hashtable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.ObsoleteAttribute("Please use KeyComparer properties.")] protected System.Collections.IComparer comparer { get { throw null; } set { } } public virtual int Count { get { throw null; } } protected System.Collections.IEqualityComparer EqualityComparer { get { throw null; } } [System.ObsoleteAttribute("Please use EqualityComparer property.")] protected System.Collections.IHashCodeProvider hcp { get { throw null; } set { } } public virtual bool IsFixedSize { get { throw null; } } public virtual bool IsReadOnly { get { throw null; } } public virtual bool IsSynchronized { get { throw null; } } public virtual object this[object key] { get { throw null; } set { } } public virtual System.Collections.ICollection Keys { get { throw null; } } public virtual object SyncRoot { get { throw null; } } public virtual System.Collections.ICollection Values { get { throw null; } } public virtual void Add(object key, object value) { } public virtual void Clear() { } public virtual object Clone() { throw null; } public virtual bool Contains(object key) { throw null; } public virtual bool ContainsKey(object key) { throw null; } public virtual bool ContainsValue(object value) { throw null; } public virtual void CopyTo(System.Array array, int arrayIndex) { } public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; } protected virtual int GetHash(object key) { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } protected virtual bool KeyEquals(object item, object key) { throw null; } public virtual void OnDeserialization(object sender) { } public virtual void Remove(object key) { } public static System.Collections.Hashtable Synchronized(System.Collections.Hashtable table) { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } public partial interface ICollection : System.Collections.IEnumerable { int Count { get; } bool IsSynchronized { get; } object SyncRoot { get; } void CopyTo(System.Array array, int index); } public partial interface IComparer { int Compare(object x, object y); } public partial interface IDictionary : System.Collections.ICollection, System.Collections.IEnumerable { bool IsFixedSize { get; } bool IsReadOnly { get; } object this[object key] { get; set; } System.Collections.ICollection Keys { get; } System.Collections.ICollection Values { get; } void Add(object key, object value); void Clear(); bool Contains(object key); new System.Collections.IDictionaryEnumerator GetEnumerator(); void Remove(object key); } public partial interface IDictionaryEnumerator : System.Collections.IEnumerator { System.Collections.DictionaryEntry Entry { get; } object Key { get; } object Value { get; } } public partial interface IEnumerable { System.Collections.IEnumerator GetEnumerator(); } public partial interface IEnumerator { object Current { get; } bool MoveNext(); void Reset(); } public partial interface IEqualityComparer { bool Equals(object x, object y); int GetHashCode(object obj); } [System.ObsoleteAttribute("Please use IEqualityComparer instead.")] public partial interface IHashCodeProvider { int GetHashCode(object obj); } public partial interface IList : System.Collections.ICollection, System.Collections.IEnumerable { bool IsFixedSize { get; } bool IsReadOnly { get; } object this[int index] { get; set; } int Add(object value); void Clear(); bool Contains(object value); int IndexOf(object value); void Insert(int index, object value); void Remove(object value); void RemoveAt(int index); } public partial interface IStructuralComparable { int CompareTo(object other, System.Collections.IComparer comparer); } public partial interface IStructuralEquatable { bool Equals(object other, System.Collections.IEqualityComparer comparer); int GetHashCode(System.Collections.IEqualityComparer comparer); } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Queue.QueueDebugView")] [System.SerializableAttribute] public partial class Queue : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable { public Queue() { } public Queue(System.Collections.ICollection col) { } public Queue(int capacity) { } public Queue(int capacity, float growFactor) { } public virtual int Count { get { throw null; } } public virtual bool IsSynchronized { get { throw null; } } public virtual object SyncRoot { get { throw null; } } public virtual void Clear() { } public virtual object Clone() { throw null; } public virtual bool Contains(object obj) { throw null; } public virtual void CopyTo(System.Array array, int index) { } public virtual object Dequeue() { throw null; } public virtual void Enqueue(object obj) { } public virtual System.Collections.IEnumerator GetEnumerator() { throw null; } public virtual object Peek() { throw null; } public static System.Collections.Queue Synchronized(System.Collections.Queue queue) { throw null; } public virtual object[] ToArray() { throw null; } public virtual void TrimToSize() { } } [System.SerializableAttribute] public abstract partial class ReadOnlyCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable { protected ReadOnlyCollectionBase() { } public virtual int Count { get { throw null; } } protected System.Collections.ArrayList InnerList { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public virtual System.Collections.IEnumerator GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.SortedList.SortedListDebugView")] [System.SerializableAttribute] public partial class SortedList : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.ICloneable { public SortedList() { } public SortedList(System.Collections.IComparer comparer) { } public SortedList(System.Collections.IComparer comparer, int capacity) { } public SortedList(System.Collections.IDictionary d) { } public SortedList(System.Collections.IDictionary d, System.Collections.IComparer comparer) { } public SortedList(int initialCapacity) { } public virtual int Capacity { get { throw null; } set { } } public virtual int Count { get { throw null; } } public virtual bool IsFixedSize { get { throw null; } } public virtual bool IsReadOnly { get { throw null; } } public virtual bool IsSynchronized { get { throw null; } } public virtual object this[object key] { get { throw null; } set { } } public virtual System.Collections.ICollection Keys { get { throw null; } } public virtual object SyncRoot { get { throw null; } } public virtual System.Collections.ICollection Values { get { throw null; } } public virtual void Add(object key, object value) { } public virtual void Clear() { } public virtual object Clone() { throw null; } public virtual bool Contains(object key) { throw null; } public virtual bool ContainsKey(object key) { throw null; } public virtual bool ContainsValue(object value) { throw null; } public virtual void CopyTo(System.Array array, int arrayIndex) { } public virtual object GetByIndex(int index) { throw null; } public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; } public virtual object GetKey(int index) { throw null; } public virtual System.Collections.IList GetKeyList() { throw null; } public virtual System.Collections.IList GetValueList() { throw null; } public virtual int IndexOfKey(object key) { throw null; } public virtual int IndexOfValue(object value) { throw null; } public virtual void Remove(object key) { } public virtual void RemoveAt(int index) { } public virtual void SetByIndex(int index, object value) { } public static System.Collections.SortedList Synchronized(System.Collections.SortedList list) { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public virtual void TrimToSize() { } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Stack.StackDebugView")] [System.SerializableAttribute] public partial class Stack : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable { public Stack() { } public Stack(System.Collections.ICollection col) { } public Stack(int initialCapacity) { } public virtual int Count { get { throw null; } } public virtual bool IsSynchronized { get { throw null; } } public virtual object SyncRoot { get { throw null; } } public virtual void Clear() { } public virtual object Clone() { throw null; } public virtual bool Contains(object obj) { throw null; } public virtual void CopyTo(System.Array array, int index) { } public virtual System.Collections.IEnumerator GetEnumerator() { throw null; } public virtual object Peek() { throw null; } public virtual object Pop() { throw null; } public virtual void Push(object obj) { } public static System.Collections.Stack Synchronized(System.Collections.Stack stack) { throw null; } public virtual object[] ToArray() { throw null; } } public static partial class StructuralComparisons { public static System.Collections.IComparer StructuralComparer { get { throw null; } } public static System.Collections.IEqualityComparer StructuralEqualityComparer { get { throw null; } } } } namespace System.Collections.Concurrent { [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.IDictionaryDebugView")] [System.SerializableAttribute] public partial class ConcurrentDictionary : System.Collections.Generic.ICollection>, System.Collections.Generic.IDictionary, System.Collections.Generic.IEnumerable>, System.Collections.Generic.IReadOnlyCollection>, System.Collections.Generic.IReadOnlyDictionary, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable { public ConcurrentDictionary() { } public ConcurrentDictionary(System.Collections.Generic.IEnumerable> collection) { } public ConcurrentDictionary(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) { } public ConcurrentDictionary(System.Collections.Generic.IEqualityComparer comparer) { } public ConcurrentDictionary(int concurrencyLevel, System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) { } public ConcurrentDictionary(int concurrencyLevel, int capacity) { } public ConcurrentDictionary(int concurrencyLevel, int capacity, System.Collections.Generic.IEqualityComparer comparer) { } public int Count { get { throw null; } } public bool IsEmpty { get { throw null; } } public TValue this[TKey key] { get { throw null; } set { } } public System.Collections.Generic.ICollection Keys { get { throw null; } } bool System.Collections.Generic.ICollection>.IsReadOnly { get { throw null; } } System.Collections.Generic.IEnumerable System.Collections.Generic.IReadOnlyDictionary.Keys { get { throw null; } } System.Collections.Generic.IEnumerable System.Collections.Generic.IReadOnlyDictionary.Values { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IDictionary.IsFixedSize { get { throw null; } } bool System.Collections.IDictionary.IsReadOnly { get { throw null; } } object System.Collections.IDictionary.this[object key] { get { throw null; } set { } } System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } } System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } } public System.Collections.Generic.ICollection Values { get { throw null; } } public TValue AddOrUpdate(TKey key, System.Func addValueFactory, System.Func updateValueFactory) { throw null; } public TValue AddOrUpdate(TKey key, TValue addValue, System.Func updateValueFactory) { throw null; } public TValue AddOrUpdate(TKey key, System.Func addValueFactory, System.Func updateValueFactory, TArg factoryArgument) { throw null; } public void Clear() { } public bool ContainsKey(TKey key) { throw null; } public System.Collections.Generic.IEnumerator> GetEnumerator() { throw null; } public TValue GetOrAdd(TKey key, System.Func valueFactory) { throw null; } public TValue GetOrAdd(TKey key, TValue value) { throw null; } public TValue GetOrAdd(TKey key, System.Func valueFactory, TArg factoryArgument) { throw null; } void System.Collections.Generic.ICollection>.Add(System.Collections.Generic.KeyValuePair keyValuePair) { } bool System.Collections.Generic.ICollection>.Contains(System.Collections.Generic.KeyValuePair keyValuePair) { throw null; } void System.Collections.Generic.ICollection>.CopyTo(System.Collections.Generic.KeyValuePair[] array, int index) { } bool System.Collections.Generic.ICollection>.Remove(System.Collections.Generic.KeyValuePair keyValuePair) { throw null; } void System.Collections.Generic.IDictionary.Add(TKey key, TValue value) { } bool System.Collections.Generic.IDictionary.Remove(TKey key) { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } void System.Collections.IDictionary.Add(object key, object value) { } bool System.Collections.IDictionary.Contains(object key) { throw null; } System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; } void System.Collections.IDictionary.Remove(object key) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public System.Collections.Generic.KeyValuePair[] ToArray() { throw null; } public bool TryAdd(TKey key, TValue value) { throw null; } public bool TryGetValue(TKey key, out TValue value) { throw null; } public bool TryRemove(TKey key, out TValue value) { throw null; } public bool TryUpdate(TKey key, TValue newValue, TValue comparisonValue) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.IProducerConsumerCollectionDebugView")] [System.SerializableAttribute] public partial class ConcurrentQueue : System.Collections.Concurrent.IProducerConsumerCollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { public ConcurrentQueue() { } public ConcurrentQueue(System.Collections.Generic.IEnumerable collection) { } public int Count { get { throw null; } } public bool IsEmpty { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void Clear() { } public void CopyTo(T[] array, int index) { } public void Enqueue(T item) { } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } bool System.Collections.Concurrent.IProducerConsumerCollection.TryAdd(T item) { throw null; } bool System.Collections.Concurrent.IProducerConsumerCollection.TryTake(out T item) { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public T[] ToArray() { throw null; } public bool TryDequeue(out T result) { throw null; } public bool TryPeek(out T result) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Concurrent.IProducerConsumerCollectionDebugView")] [System.SerializableAttribute] public partial class ConcurrentStack : System.Collections.Concurrent.IProducerConsumerCollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { public ConcurrentStack() { } public ConcurrentStack(System.Collections.Generic.IEnumerable collection) { } public int Count { get { throw null; } } public bool IsEmpty { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void Clear() { } public void CopyTo(T[] array, int index) { } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } public void Push(T item) { } public void PushRange(T[] items) { } public void PushRange(T[] items, int startIndex, int count) { } bool System.Collections.Concurrent.IProducerConsumerCollection.TryAdd(T item) { throw null; } bool System.Collections.Concurrent.IProducerConsumerCollection.TryTake(out T item) { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public T[] ToArray() { throw null; } public bool TryPeek(out T result) { throw null; } public bool TryPop(out T result) { throw null; } public int TryPopRange(T[] items) { throw null; } public int TryPopRange(T[] items, int startIndex, int count) { throw null; } } [System.FlagsAttribute] public enum EnumerablePartitionerOptions { NoBuffering = 1, None = 0, } public partial interface IProducerConsumerCollection : System.Collections.Generic.IEnumerable, System.Collections.ICollection, System.Collections.IEnumerable { void CopyTo(T[] array, int index); T[] ToArray(); bool TryAdd(T item); bool TryTake(out T item); } public abstract partial class OrderablePartitioner : System.Collections.Concurrent.Partitioner { protected OrderablePartitioner(bool keysOrderedInEachPartition, bool keysOrderedAcrossPartitions, bool keysNormalized) { } public bool KeysNormalized { get { throw null; } } public bool KeysOrderedAcrossPartitions { get { throw null; } } public bool KeysOrderedInEachPartition { get { throw null; } } public override System.Collections.Generic.IEnumerable GetDynamicPartitions() { throw null; } public virtual System.Collections.Generic.IEnumerable> GetOrderableDynamicPartitions() { throw null; } public abstract System.Collections.Generic.IList>> GetOrderablePartitions(int partitionCount); public override System.Collections.Generic.IList> GetPartitions(int partitionCount) { throw null; } } public static partial class Partitioner { public static System.Collections.Concurrent.OrderablePartitioner> Create(int fromInclusive, int toExclusive) { throw null; } public static System.Collections.Concurrent.OrderablePartitioner> Create(int fromInclusive, int toExclusive, int rangeSize) { throw null; } public static System.Collections.Concurrent.OrderablePartitioner> Create(long fromInclusive, long toExclusive) { throw null; } public static System.Collections.Concurrent.OrderablePartitioner> Create(long fromInclusive, long toExclusive, long rangeSize) { throw null; } public static System.Collections.Concurrent.OrderablePartitioner Create(System.Collections.Generic.IEnumerable source) { throw null; } public static System.Collections.Concurrent.OrderablePartitioner Create(System.Collections.Generic.IEnumerable source, System.Collections.Concurrent.EnumerablePartitionerOptions partitionerOptions) { throw null; } public static System.Collections.Concurrent.OrderablePartitioner Create(System.Collections.Generic.IList list, bool loadBalance) { throw null; } public static System.Collections.Concurrent.OrderablePartitioner Create(TSource[] array, bool loadBalance) { throw null; } } public abstract partial class Partitioner { protected Partitioner() { } public virtual bool SupportsDynamicPartitions { get { throw null; } } public virtual System.Collections.Generic.IEnumerable GetDynamicPartitions() { throw null; } public abstract System.Collections.Generic.IList> GetPartitions(int partitionCount); } } namespace System.Collections.Generic { public static partial class CollectionExtensions { public static TValue GetValueOrDefault(this System.Collections.Generic.IReadOnlyDictionary dictionary, TKey key) { throw null; } public static TValue GetValueOrDefault(this System.Collections.Generic.IReadOnlyDictionary dictionary, TKey key, TValue defaultValue) { throw null; } public static bool Remove(this System.Collections.Generic.IDictionary dictionary, TKey key, out TValue value) { throw null; } public static bool TryAdd(this System.Collections.Generic.IDictionary dictionary, TKey key, TValue value) { throw null; } } [System.SerializableAttribute] public abstract partial class Comparer : System.Collections.Generic.IComparer, System.Collections.IComparer { protected Comparer() { } public static System.Collections.Generic.Comparer Default { get { throw null; } } public abstract int Compare(T x, T y); public static System.Collections.Generic.Comparer Create(System.Comparison comparison) { throw null; } int System.Collections.IComparer.Compare(object x, object y) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.IDictionaryDebugView")] [System.SerializableAttribute] public partial class Dictionary : System.Collections.Generic.ICollection>, System.Collections.Generic.IDictionary, System.Collections.Generic.IEnumerable>, System.Collections.Generic.IReadOnlyCollection>, System.Collections.Generic.IReadOnlyDictionary, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { public Dictionary() { } public Dictionary(System.Collections.Generic.IDictionary dictionary) { } public Dictionary(System.Collections.Generic.IDictionary dictionary, System.Collections.Generic.IEqualityComparer comparer) { } public Dictionary(System.Collections.Generic.IEnumerable> collection) { } public Dictionary(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) { } public Dictionary(System.Collections.Generic.IEqualityComparer comparer) { } public Dictionary(int capacity) { } public Dictionary(int capacity, System.Collections.Generic.IEqualityComparer comparer) { } protected Dictionary(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public System.Collections.Generic.IEqualityComparer Comparer { get { throw null; } } public int Count { get { throw null; } } public TValue this[TKey key] { get { throw null; } set { } } public System.Collections.Generic.Dictionary.KeyCollection Keys { get { throw null; } } bool System.Collections.Generic.ICollection>.IsReadOnly { get { throw null; } } System.Collections.Generic.ICollection System.Collections.Generic.IDictionary.Keys { get { throw null; } } System.Collections.Generic.ICollection System.Collections.Generic.IDictionary.Values { get { throw null; } } System.Collections.Generic.IEnumerable System.Collections.Generic.IReadOnlyDictionary.Keys { get { throw null; } } System.Collections.Generic.IEnumerable System.Collections.Generic.IReadOnlyDictionary.Values { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IDictionary.IsFixedSize { get { throw null; } } bool System.Collections.IDictionary.IsReadOnly { get { throw null; } } object System.Collections.IDictionary.this[object key] { get { throw null; } set { } } System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } } System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } } public System.Collections.Generic.Dictionary.ValueCollection Values { get { throw null; } } public void Add(TKey key, TValue value) { } public void Clear() { } public bool ContainsKey(TKey key) { throw null; } public bool ContainsValue(TValue value) { throw null; } public int EnsureCapacity(int capacity) { throw null; } public System.Collections.Generic.Dictionary.Enumerator GetEnumerator() { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual void OnDeserialization(object sender) { } public bool Remove(TKey key) { throw null; } public bool Remove(TKey key, out TValue value) { throw null; } void System.Collections.Generic.ICollection>.Add(System.Collections.Generic.KeyValuePair keyValuePair) { } bool System.Collections.Generic.ICollection>.Contains(System.Collections.Generic.KeyValuePair keyValuePair) { throw null; } void System.Collections.Generic.ICollection>.CopyTo(System.Collections.Generic.KeyValuePair[] array, int index) { } bool System.Collections.Generic.ICollection>.Remove(System.Collections.Generic.KeyValuePair keyValuePair) { throw null; } System.Collections.Generic.IEnumerator> System.Collections.Generic.IEnumerable>.GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } void System.Collections.IDictionary.Add(object key, object value) { } bool System.Collections.IDictionary.Contains(object key) { throw null; } System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; } void System.Collections.IDictionary.Remove(object key) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public void TrimExcess() { } public void TrimExcess(int capacity) { } public bool TryAdd(TKey key, TValue value) { throw null; } public bool TryGetValue(TKey key, out TValue value) { throw null; } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator>, System.Collections.IDictionaryEnumerator, System.Collections.IEnumerator, System.IDisposable { private object _dummy; private int _dummyPrimitive; public System.Collections.Generic.KeyValuePair Current { get { throw null; } } System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator.Entry { get { throw null; } } object System.Collections.IDictionaryEnumerator.Key { get { throw null; } } object System.Collections.IDictionaryEnumerator.Value { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } void System.Collections.IEnumerator.Reset() { } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.DictionaryKeyCollectionDebugView")] [System.SerializableAttribute] public sealed partial class KeyCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { public KeyCollection(System.Collections.Generic.Dictionary dictionary) { } public int Count { get { throw null; } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void CopyTo(TKey[] array, int index) { } public System.Collections.Generic.Dictionary.KeyCollection.Enumerator GetEnumerator() { throw null; } void System.Collections.Generic.ICollection.Add(TKey item) { } void System.Collections.Generic.ICollection.Clear() { } bool System.Collections.Generic.ICollection.Contains(TKey item) { throw null; } bool System.Collections.Generic.ICollection.Remove(TKey item) { throw null; } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { private TKey _currentKey; private object _dummy; private int _dummyPrimitive; public TKey Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } void System.Collections.IEnumerator.Reset() { } } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.DictionaryValueCollectionDebugView")] [System.SerializableAttribute] public sealed partial class ValueCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { public ValueCollection(System.Collections.Generic.Dictionary dictionary) { } public int Count { get { throw null; } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void CopyTo(TValue[] array, int index) { } public System.Collections.Generic.Dictionary.ValueCollection.Enumerator GetEnumerator() { throw null; } void System.Collections.Generic.ICollection.Add(TValue item) { } void System.Collections.Generic.ICollection.Clear() { } bool System.Collections.Generic.ICollection.Contains(TValue item) { throw null; } bool System.Collections.Generic.ICollection.Remove(TValue item) { throw null; } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { private TValue _currentValue; private object _dummy; private int _dummyPrimitive; public TValue Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } void System.Collections.IEnumerator.Reset() { } } } } [System.SerializableAttribute] public abstract partial class EqualityComparer : System.Collections.Generic.IEqualityComparer, System.Collections.IEqualityComparer { protected EqualityComparer() { } public static System.Collections.Generic.EqualityComparer Default { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public abstract bool Equals(T x, T y); public abstract int GetHashCode(T obj); bool System.Collections.IEqualityComparer.Equals(object x, object y) { throw null; } int System.Collections.IEqualityComparer.GetHashCode(object obj) { throw null; } } public partial interface IAsyncEnumerable { System.Collections.Generic.IAsyncEnumerator GetAsyncEnumerator(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } public partial interface IAsyncEnumerator : System.IAsyncDisposable { T Current { get; } System.Threading.Tasks.ValueTask MoveNextAsync(); } public partial interface ICollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { int Count { get; } bool IsReadOnly { get; } void Add(T item); void Clear(); bool Contains(T item); void CopyTo(T[] array, int arrayIndex); bool Remove(T item); } public partial interface IComparer { int Compare(T x, T y); } public partial interface IDictionary : System.Collections.Generic.ICollection>, System.Collections.Generic.IEnumerable>, System.Collections.IEnumerable { TValue this[TKey key] { get; set; } System.Collections.Generic.ICollection Keys { get; } System.Collections.Generic.ICollection Values { get; } void Add(TKey key, TValue value); bool ContainsKey(TKey key); bool Remove(TKey key); bool TryGetValue(TKey key, out TValue value); } public partial interface IEnumerable : System.Collections.IEnumerable { new System.Collections.Generic.IEnumerator GetEnumerator(); } public partial interface IEnumerator : System.Collections.IEnumerator, System.IDisposable { new T Current { get; } } public partial interface IEqualityComparer { bool Equals(T x, T y); int GetHashCode(T obj); } public partial interface IList : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { T this[int index] { get; set; } int IndexOf(T item); void Insert(int index, T item); void RemoveAt(int index); } public partial interface IReadOnlyCollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { int Count { get; } } public partial interface IReadOnlyDictionary : System.Collections.Generic.IEnumerable>, System.Collections.Generic.IReadOnlyCollection>, System.Collections.IEnumerable { TValue this[TKey key] { get; } System.Collections.Generic.IEnumerable Keys { get; } System.Collections.Generic.IEnumerable Values { get; } bool ContainsKey(TKey key); bool TryGetValue(TKey key, out TValue value); } public partial interface IReadOnlyList : System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.IEnumerable { T this[int index] { get; } } [System.SerializableAttribute] public partial class KeyNotFoundException : System.SystemException { public KeyNotFoundException() { } protected KeyNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public KeyNotFoundException(string message) { } public KeyNotFoundException(string message, System.Exception innerException) { } } public static partial class KeyValuePair { public static System.Collections.Generic.KeyValuePair Create(TKey key, TValue value) { throw null; } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct KeyValuePair { private readonly TKey key; private readonly TValue value; private readonly int _dummyPrimitive; public KeyValuePair(TKey key, TValue value) { throw null; } public TKey Key { get { throw null; } } public TValue Value { get { throw null; } } public void Deconstruct(out TKey key, out TValue value) { throw null; } public override string ToString() { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.ICollectionDebugView")] [System.SerializableAttribute] public partial class List : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList { public List() { } public List(System.Collections.Generic.IEnumerable collection) { } public List(int capacity) { } public int Capacity { get { throw null; } set { } } public int Count { get { throw null; } } public T this[int index] { get { throw null; } set { } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IList.IsFixedSize { get { throw null; } } bool System.Collections.IList.IsReadOnly { get { throw null; } } object System.Collections.IList.this[int index] { get { throw null; } set { } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void Add(T item) { } public void AddRange(System.Collections.Generic.IEnumerable collection) { } public System.Collections.ObjectModel.ReadOnlyCollection AsReadOnly() { throw null; } public int BinarySearch(int index, int count, T item, System.Collections.Generic.IComparer comparer) { throw null; } public int BinarySearch(T item) { throw null; } public int BinarySearch(T item, System.Collections.Generic.IComparer comparer) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void Clear() { } public bool Contains(T item) { throw null; } public System.Collections.Generic.List ConvertAll(System.Converter converter) { throw null; } public void CopyTo(int index, T[] array, int arrayIndex, int count) { } public void CopyTo(T[] array) { } public void CopyTo(T[] array, int arrayIndex) { } public bool Exists(System.Predicate match) { throw null; } public T Find(System.Predicate match) { throw null; } public System.Collections.Generic.List FindAll(System.Predicate match) { throw null; } public int FindIndex(int startIndex, int count, System.Predicate match) { throw null; } public int FindIndex(int startIndex, System.Predicate match) { throw null; } public int FindIndex(System.Predicate match) { throw null; } public T FindLast(System.Predicate match) { throw null; } public int FindLastIndex(int startIndex, int count, System.Predicate match) { throw null; } public int FindLastIndex(int startIndex, System.Predicate match) { throw null; } public int FindLastIndex(System.Predicate match) { throw null; } public void ForEach(System.Action action) { } public System.Collections.Generic.List.Enumerator GetEnumerator() { throw null; } public System.Collections.Generic.List GetRange(int index, int count) { throw null; } public int IndexOf(T item) { throw null; } public int IndexOf(T item, int index) { throw null; } public int IndexOf(T item, int index, int count) { throw null; } public void Insert(int index, T item) { } public void InsertRange(int index, System.Collections.Generic.IEnumerable collection) { } public int LastIndexOf(T item) { throw null; } public int LastIndexOf(T item, int index) { throw null; } public int LastIndexOf(T item, int index, int count) { throw null; } public bool Remove(T item) { throw null; } public int RemoveAll(System.Predicate match) { throw null; } public void RemoveAt(int index) { } public void RemoveRange(int index, int count) { } public void Reverse() { } public void Reverse(int index, int count) { } public void Sort() { } public void Sort(System.Collections.Generic.IComparer comparer) { } public void Sort(System.Comparison comparison) { } public void Sort(int index, int count, System.Collections.Generic.IComparer comparer) { } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } int System.Collections.IList.Add(object item) { throw null; } bool System.Collections.IList.Contains(object item) { throw null; } int System.Collections.IList.IndexOf(object item) { throw null; } void System.Collections.IList.Insert(int index, object item) { } void System.Collections.IList.Remove(object item) { } public T[] ToArray() { throw null; } public void TrimExcess() { } public bool TrueForAll(System.Predicate match) { throw null; } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { private T _current; private object _dummy; private int _dummyPrimitive; public T Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } void System.Collections.IEnumerator.Reset() { } } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.QueueDebugView")] [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")] [System.SerializableAttribute] public partial class Queue : System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { public Queue() { } public Queue(System.Collections.Generic.IEnumerable collection) { } public Queue(int capacity) { } public int Count { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void Clear() { } public bool Contains(T item) { throw null; } public void CopyTo(T[] array, int arrayIndex) { } public T Dequeue() { throw null; } public void Enqueue(T item) { } public System.Collections.Generic.Queue.Enumerator GetEnumerator() { throw null; } public T Peek() { throw null; } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public T[] ToArray() { throw null; } public void TrimExcess() { } public bool TryDequeue(out T result) { throw null; } public bool TryPeek(out T result) { throw null; } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { private T _currentElement; private object _dummy; private int _dummyPrimitive; public T Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } void System.Collections.IEnumerator.Reset() { } } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.StackDebugView")] [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")] [System.SerializableAttribute] public partial class Stack : System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { public Stack() { } public Stack(System.Collections.Generic.IEnumerable collection) { } public Stack(int capacity) { } public int Count { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void Clear() { } public bool Contains(T item) { throw null; } public void CopyTo(T[] array, int arrayIndex) { } public System.Collections.Generic.Stack.Enumerator GetEnumerator() { throw null; } public T Peek() { throw null; } public T Pop() { throw null; } public void Push(T item) { } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public T[] ToArray() { throw null; } public void TrimExcess() { } public bool TryPeek(out T result) { throw null; } public bool TryPop(out T result) { throw null; } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { private T _currentElement; private object _dummy; private int _dummyPrimitive; public T Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } void System.Collections.IEnumerator.Reset() { } } } } namespace System.Collections.ObjectModel { [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.ICollectionDebugView")] [System.SerializableAttribute] public partial class Collection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList { public Collection() { } public Collection(System.Collections.Generic.IList list) { } public int Count { get { throw null; } } public T this[int index] { get { throw null; } set { } } protected System.Collections.Generic.IList Items { get { throw null; } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IList.IsFixedSize { get { throw null; } } bool System.Collections.IList.IsReadOnly { get { throw null; } } object System.Collections.IList.this[int index] { get { throw null; } set { } } public void Add(T item) { } public void Clear() { } protected virtual void ClearItems() { } public bool Contains(T item) { throw null; } public void CopyTo(T[] array, int index) { } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } public int IndexOf(T item) { throw null; } public void Insert(int index, T item) { } protected virtual void InsertItem(int index, T item) { } public bool Remove(T item) { throw null; } public void RemoveAt(int index) { } protected virtual void RemoveItem(int index) { } protected virtual void SetItem(int index, T item) { } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } int System.Collections.IList.Add(object value) { throw null; } bool System.Collections.IList.Contains(object value) { throw null; } int System.Collections.IList.IndexOf(object value) { throw null; } void System.Collections.IList.Insert(int index, object value) { } void System.Collections.IList.Remove(object value) { } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.CollectionDebugView")] [System.SerializableAttribute] public abstract partial class KeyedCollection : System.Collections.ObjectModel.Collection { protected KeyedCollection() { } protected KeyedCollection(System.Collections.Generic.IEqualityComparer comparer) { } protected KeyedCollection(System.Collections.Generic.IEqualityComparer comparer, int dictionaryCreationThreshold) { } public System.Collections.Generic.IEqualityComparer Comparer { get { throw null; } } protected System.Collections.Generic.IDictionary Dictionary { get { throw null; } } public TItem this[TKey key] { get { throw null; } } protected void ChangeItemKey(TItem item, TKey newKey) { } protected override void ClearItems() { } public bool Contains(TKey key) { throw null; } protected abstract TKey GetKeyForItem(TItem item); protected override void InsertItem(int index, TItem item) { } public bool Remove(TKey key) { throw null; } protected override void RemoveItem(int index) { } protected override void SetItem(int index, TItem item) { } public bool TryGetValue(TKey key, out TItem item) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.ICollectionDebugView")] [System.SerializableAttribute] public partial class ReadOnlyCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList { public ReadOnlyCollection(System.Collections.Generic.IList list) { } public int Count { get { throw null; } } public T this[int index] { get { throw null; } } protected System.Collections.Generic.IList Items { get { throw null; } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } T System.Collections.Generic.IList.this[int index] { get { throw null; } set { } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IList.IsFixedSize { get { throw null; } } bool System.Collections.IList.IsReadOnly { get { throw null; } } object System.Collections.IList.this[int index] { get { throw null; } set { } } public bool Contains(T value) { throw null; } public void CopyTo(T[] array, int index) { } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } public int IndexOf(T value) { throw null; } void System.Collections.Generic.ICollection.Add(T value) { } void System.Collections.Generic.ICollection.Clear() { } bool System.Collections.Generic.ICollection.Remove(T value) { throw null; } void System.Collections.Generic.IList.Insert(int index, T value) { } void System.Collections.Generic.IList.RemoveAt(int index) { } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } int System.Collections.IList.Add(object value) { throw null; } void System.Collections.IList.Clear() { } bool System.Collections.IList.Contains(object value) { throw null; } int System.Collections.IList.IndexOf(object value) { throw null; } void System.Collections.IList.Insert(int index, object value) { } void System.Collections.IList.Remove(object value) { } void System.Collections.IList.RemoveAt(int index) { } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.DictionaryDebugView")] [System.SerializableAttribute] public partial class ReadOnlyDictionary : System.Collections.Generic.ICollection>, System.Collections.Generic.IDictionary, System.Collections.Generic.IEnumerable>, System.Collections.Generic.IReadOnlyCollection>, System.Collections.Generic.IReadOnlyDictionary, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable { public ReadOnlyDictionary(System.Collections.Generic.IDictionary dictionary) { } public int Count { get { throw null; } } protected System.Collections.Generic.IDictionary Dictionary { get { throw null; } } public TValue this[TKey key] { get { throw null; } } public System.Collections.ObjectModel.ReadOnlyDictionary.KeyCollection Keys { get { throw null; } } bool System.Collections.Generic.ICollection>.IsReadOnly { get { throw null; } } TValue System.Collections.Generic.IDictionary.this[TKey key] { get { throw null; } set { } } System.Collections.Generic.ICollection System.Collections.Generic.IDictionary.Keys { get { throw null; } } System.Collections.Generic.ICollection System.Collections.Generic.IDictionary.Values { get { throw null; } } System.Collections.Generic.IEnumerable System.Collections.Generic.IReadOnlyDictionary.Keys { get { throw null; } } System.Collections.Generic.IEnumerable System.Collections.Generic.IReadOnlyDictionary.Values { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } bool System.Collections.IDictionary.IsFixedSize { get { throw null; } } bool System.Collections.IDictionary.IsReadOnly { get { throw null; } } object System.Collections.IDictionary.this[object key] { get { throw null; } set { } } System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } } System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } } public System.Collections.ObjectModel.ReadOnlyDictionary.ValueCollection Values { get { throw null; } } public bool ContainsKey(TKey key) { throw null; } public System.Collections.Generic.IEnumerator> GetEnumerator() { throw null; } void System.Collections.Generic.ICollection>.Add(System.Collections.Generic.KeyValuePair item) { } void System.Collections.Generic.ICollection>.Clear() { } bool System.Collections.Generic.ICollection>.Contains(System.Collections.Generic.KeyValuePair item) { throw null; } void System.Collections.Generic.ICollection>.CopyTo(System.Collections.Generic.KeyValuePair[] array, int arrayIndex) { } bool System.Collections.Generic.ICollection>.Remove(System.Collections.Generic.KeyValuePair item) { throw null; } void System.Collections.Generic.IDictionary.Add(TKey key, TValue value) { } bool System.Collections.Generic.IDictionary.Remove(TKey key) { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } void System.Collections.IDictionary.Add(object key, object value) { } void System.Collections.IDictionary.Clear() { } bool System.Collections.IDictionary.Contains(object key) { throw null; } System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; } void System.Collections.IDictionary.Remove(object key) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public bool TryGetValue(TKey key, out TValue value) { throw null; } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.CollectionDebugView")] [System.SerializableAttribute] public sealed partial class KeyCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { internal KeyCollection() { } public int Count { get { throw null; } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void CopyTo(TKey[] array, int arrayIndex) { } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } void System.Collections.Generic.ICollection.Add(TKey item) { } void System.Collections.Generic.ICollection.Clear() { } bool System.Collections.Generic.ICollection.Contains(TKey item) { throw null; } bool System.Collections.Generic.ICollection.Remove(TKey item) { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.CollectionDebugView")] [System.SerializableAttribute] public sealed partial class ValueCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.ICollection, System.Collections.IEnumerable { internal ValueCollection() { } public int Count { get { throw null; } } bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } bool System.Collections.ICollection.IsSynchronized { get { throw null; } } object System.Collections.ICollection.SyncRoot { get { throw null; } } public void CopyTo(TValue[] array, int arrayIndex) { } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } void System.Collections.Generic.ICollection.Add(TValue item) { } void System.Collections.Generic.ICollection.Clear() { } bool System.Collections.Generic.ICollection.Contains(TValue item) { throw null; } bool System.Collections.Generic.ICollection.Remove(TValue item) { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } } } namespace System.Configuration.Assemblies { [System.ObsoleteAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct AssemblyHash : System.ICloneable { private object _dummy; private int _dummyPrimitive; [System.ObsoleteAttribute] public static readonly System.Configuration.Assemblies.AssemblyHash Empty; [System.ObsoleteAttribute] public AssemblyHash(byte[] value) { throw null; } [System.ObsoleteAttribute] public AssemblyHash(System.Configuration.Assemblies.AssemblyHashAlgorithm algorithm, byte[] value) { throw null; } [System.ObsoleteAttribute] public System.Configuration.Assemblies.AssemblyHashAlgorithm Algorithm { get { throw null; } set { } } [System.ObsoleteAttribute] public object Clone() { throw null; } [System.ObsoleteAttribute] public byte[] GetValue() { throw null; } [System.ObsoleteAttribute] public void SetValue(byte[] value) { } } public enum AssemblyHashAlgorithm { MD5 = 32771, None = 0, SHA1 = 32772, SHA256 = 32780, SHA384 = 32781, SHA512 = 32782, } public enum AssemblyVersionCompatibility { SameDomain = 3, SameMachine = 1, SameProcess = 2, } } namespace System.Deployment.Internal { [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static partial class InternalActivationContextHelper { [System.MonoTODOAttribute] public static object GetActivationContextData(System.ActivationContext appInfo) { throw null; } [System.MonoTODOAttribute] public static object GetApplicationComponentManifest(System.ActivationContext appInfo) { throw null; } [System.MonoTODOAttribute("2.0 SP1 member")] public static byte[] GetApplicationManifestBytes(System.ActivationContext appInfo) { throw null; } [System.MonoTODOAttribute] public static object GetDeploymentComponentManifest(System.ActivationContext appInfo) { throw null; } [System.MonoTODOAttribute("2.0 SP1 member")] public static byte[] GetDeploymentManifestBytes(System.ActivationContext appInfo) { throw null; } [System.MonoTODOAttribute] public static bool IsFirstRun(System.ActivationContext appInfo) { throw null; } [System.MonoTODOAttribute] public static void PrepareForExecution(System.ActivationContext appInfo) { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static partial class InternalApplicationIdentityHelper { [System.MonoTODOAttribute] public static object GetInternalAppId(System.ApplicationIdentity id) { throw null; } } } namespace System.Diagnostics { [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=true)] [System.SerializableAttribute] public sealed partial class ConditionalAttribute : System.Attribute { public ConditionalAttribute(string conditionString) { } public string ConditionString { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Module, AllowMultiple=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DebuggableAttribute : System.Attribute { public DebuggableAttribute(bool isJITTrackingEnabled, bool isJITOptimizerDisabled) { } public DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes modes) { } public System.Diagnostics.DebuggableAttribute.DebuggingModes DebuggingFlags { get { throw null; } } public bool IsJITOptimizerDisabled { get { throw null; } } public bool IsJITTrackingEnabled { get { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum DebuggingModes { Default = 1, DisableOptimizations = 256, EnableEditAndContinue = 4, IgnoreSymbolStoreSequencePoints = 2, None = 0, } } [System.MonoTODOAttribute("The Debugger class is not functional")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class Debugger { public static readonly string DefaultCategory; [System.ObsoleteAttribute("Call the static methods directly on this type", true)] public Debugger() { } public static bool IsAttached { get { throw null; } } public static void Break() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static bool IsLogging() { throw null; } [System.MonoTODOAttribute("Not implemented")] public static bool Launch() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void Log(int level, string category, string message) { } public static void NotifyOfCrossThreadDependency() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DebuggerBrowsableAttribute : System.Attribute { public DebuggerBrowsableAttribute(System.Diagnostics.DebuggerBrowsableState state) { } public System.Diagnostics.DebuggerBrowsableState State { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum DebuggerBrowsableState { Collapsed = 2, Never = 0, RootHidden = 3, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Field | System.AttributeTargets.Property | System.AttributeTargets.Struct, AllowMultiple=true)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DebuggerDisplayAttribute : System.Attribute { public DebuggerDisplayAttribute(string value) { } public string Name { get { throw null; } set { } } public System.Type Target { get { throw null; } set { } } public string TargetTypeName { get { throw null; } set { } } public string Type { get { throw null; } set { } } public string Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Property, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class DebuggerHiddenAttribute : System.Attribute { public DebuggerHiddenAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Property | System.AttributeTargets.Struct, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class DebuggerNonUserCodeAttribute : System.Attribute { public DebuggerNonUserCodeAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor | System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class DebuggerStepperBoundaryAttribute : System.Attribute { public DebuggerStepperBoundaryAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class DebuggerStepThroughAttribute : System.Attribute { public DebuggerStepThroughAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Struct, AllowMultiple=true)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DebuggerTypeProxyAttribute : System.Attribute { public DebuggerTypeProxyAttribute(string typeName) { } public DebuggerTypeProxyAttribute(System.Type type) { } public string ProxyTypeName { get { throw null; } } public System.Type Target { get { throw null; } set { } } public string TargetTypeName { get { throw null; } set { } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Struct, AllowMultiple=true)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DebuggerVisualizerAttribute : System.Attribute { public DebuggerVisualizerAttribute(string visualizerTypeName) { } public DebuggerVisualizerAttribute(string visualizerTypeName, string visualizerObjectSourceTypeName) { } public DebuggerVisualizerAttribute(string visualizerTypeName, System.Type visualizerObjectSource) { } public DebuggerVisualizerAttribute(System.Type visualizer) { } public DebuggerVisualizerAttribute(System.Type visualizer, string visualizerObjectSourceTypeName) { } public DebuggerVisualizerAttribute(System.Type visualizer, System.Type visualizerObjectSource) { } public string Description { get { throw null; } set { } } public System.Type Target { get { throw null; } set { } } public string TargetTypeName { get { throw null; } set { } } public string VisualizerObjectSourceTypeName { get { throw null; } } public string VisualizerTypeName { get { throw null; } } } [System.MonoTODOAttribute("Serialized objects are not compatible with MS.NET")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class StackFrame { public const int OFFSET_UNKNOWN = -1; public StackFrame() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackFrame(bool fNeedFileInfo) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackFrame(int skipFrames) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackFrame(int skipFrames, bool fNeedFileInfo) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackFrame(string fileName, int lineNumber) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackFrame(string fileName, int lineNumber, int colNumber) { } public virtual int GetFileColumnNumber() { throw null; } public virtual int GetFileLineNumber() { throw null; } public virtual string GetFileName() { throw null; } public virtual int GetILOffset() { throw null; } public virtual System.Reflection.MethodBase GetMethod() { throw null; } public virtual int GetNativeOffset() { throw null; } public override string ToString() { throw null; } } [System.MonoTODOAttribute("Serialized objects are not compatible with .NET")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class StackTrace { public const int METHODS_TO_SKIP = 0; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackTrace() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackTrace(bool fNeedFileInfo) { } public StackTrace(System.Diagnostics.StackFrame frame) { } public StackTrace(System.Exception e) { } public StackTrace(System.Exception e, bool fNeedFileInfo) { } public StackTrace(System.Exception e, int skipFrames) { } public StackTrace(System.Exception e, int skipFrames, bool fNeedFileInfo) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackTrace(int skipFrames) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public StackTrace(int skipFrames, bool fNeedFileInfo) { } [System.MonoLimitationAttribute("Not possible to create StackTraces from other threads")] [System.ObsoleteAttribute] public StackTrace(System.Threading.Thread targetThread, bool needFileInfo) { } public virtual int FrameCount { get { throw null; } } public virtual System.Diagnostics.StackFrame GetFrame(int index) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual System.Diagnostics.StackFrame[] GetFrames() { throw null; } public override string ToString() { throw null; } } } namespace System.Diagnostics.CodeAnalysis { [System.AttributeUsageAttribute(System.AttributeTargets.All, Inherited=false, AllowMultiple=true)] [System.Diagnostics.ConditionalAttribute("CODE_ANALYSIS")] public sealed partial class SuppressMessageAttribute : System.Attribute { public SuppressMessageAttribute(string category, string checkId) { } public string Category { get { throw null; } } public string CheckId { get { throw null; } } public string Justification { get { throw null; } set { } } public string MessageId { get { throw null; } set { } } public string Scope { get { throw null; } set { } } public string Target { get { throw null; } set { } } } } namespace System.Diagnostics.Contracts { public static partial class Contract { public static event System.EventHandler ContractFailed { add { } remove { } } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Diagnostics.ConditionalAttribute("DEBUG")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Assert(bool condition) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Diagnostics.ConditionalAttribute("DEBUG")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Assert(bool condition, string userMessage) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Diagnostics.ConditionalAttribute("DEBUG")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Assume(bool condition) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Diagnostics.ConditionalAttribute("DEBUG")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Assume(bool condition, string userMessage) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void EndContractBlock() { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Ensures(bool condition) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Ensures(bool condition, string userMessage) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void EnsuresOnThrow(bool condition) where TException : System.Exception { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void EnsuresOnThrow(bool condition, string userMessage) where TException : System.Exception { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static bool Exists(int fromInclusive, int toExclusive, System.Predicate predicate) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static bool Exists(System.Collections.Generic.IEnumerable collection, System.Predicate predicate) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static bool ForAll(int fromInclusive, int toExclusive, System.Predicate predicate) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static bool ForAll(System.Collections.Generic.IEnumerable collection, System.Predicate predicate) { throw null; } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Invariant(bool condition) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Invariant(bool condition, string userMessage) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static T OldValue(T value) { throw null; } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Requires(bool condition) { } [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Requires(bool condition, string userMessage) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Requires(bool condition) where TException : System.Exception { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void Requires(bool condition, string userMessage) where TException : System.Exception { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static T Result() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static T ValueAtReturn(out T value) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractAbbreviatorAttribute : System.Attribute { public ContractAbbreviatorAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractArgumentValidatorAttribute : System.Attribute { public ContractArgumentValidatorAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Interface, AllowMultiple=false, Inherited=false)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] [System.Diagnostics.ConditionalAttribute("DEBUG")] public sealed partial class ContractClassAttribute : System.Attribute { public ContractClassAttribute(System.Type typeContainingContracts) { } public System.Type TypeContainingContracts { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=false)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractClassForAttribute : System.Attribute { public ContractClassForAttribute(System.Type typeContractsAreFor) { } public System.Type TypeContractsAreFor { get { throw null; } } } public sealed partial class ContractFailedEventArgs : System.EventArgs { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public ContractFailedEventArgs(System.Diagnostics.Contracts.ContractFailureKind failureKind, string message, string condition, System.Exception originalException) { } public string Condition { get { throw null; } } public System.Diagnostics.Contracts.ContractFailureKind FailureKind { get { throw null; } } public bool Handled { get { throw null; } } public string Message { get { throw null; } } public System.Exception OriginalException { get { throw null; } } public bool Unwind { get { throw null; } } [System.Security.SecurityCriticalAttribute] public void SetHandled() { } [System.Security.SecurityCriticalAttribute] public void SetUnwind() { } } public enum ContractFailureKind { Assert = 4, Assume = 5, Invariant = 3, Postcondition = 1, PostconditionOnException = 2, Precondition = 0, } [System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractInvariantMethodAttribute : System.Attribute { public ContractInvariantMethodAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true, Inherited=false)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractOptionAttribute : System.Attribute { public ContractOptionAttribute(string category, string setting, bool enabled) { } public ContractOptionAttribute(string category, string setting, string value) { } public string Category { get { throw null; } } public bool Enabled { get { throw null; } } public string Setting { get { throw null; } } public string Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Field)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractPublicPropertyNameAttribute : System.Attribute { public ContractPublicPropertyNameAttribute(string name) { } public string Name { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly)] public sealed partial class ContractReferenceAssemblyAttribute : System.Attribute { public ContractReferenceAssemblyAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractRuntimeIgnoredAttribute : System.Attribute { public ContractRuntimeIgnoredAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Property | System.AttributeTargets.Struct)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class ContractVerificationAttribute : System.Attribute { public ContractVerificationAttribute(bool value) { } public bool Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Delegate | System.AttributeTargets.Event | System.AttributeTargets.Method | System.AttributeTargets.Parameter | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)] [System.Diagnostics.ConditionalAttribute("CONTRACTS_FULL")] public sealed partial class PureAttribute : System.Attribute { public PureAttribute() { } } } namespace System.Diagnostics.Contracts.Internal { [System.ObsoleteAttribute("Use the ContractHelper class in the System.Runtime.CompilerServices namespace instead.")] public static partial class ContractHelper { [System.Diagnostics.DebuggerNonUserCodeAttribute] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static string RaiseContractFailedEvent(System.Diagnostics.Contracts.ContractFailureKind failureKind, string userMessage, string conditionText, System.Exception innerException) { throw null; } [System.Diagnostics.DebuggerNonUserCodeAttribute] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void TriggerFailure(System.Diagnostics.Contracts.ContractFailureKind kind, string displayMessage, string userMessage, string conditionText, System.Exception innerException) { } } } namespace System.Diagnostics.SymbolStore { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolBinder { [System.ObsoleteAttribute("This interface is not 64-bit clean. Use ISymbolBinder1 instead")] System.Diagnostics.SymbolStore.ISymbolReader GetReader(int importer, string filename, string searchPath); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolBinder1 { System.Diagnostics.SymbolStore.ISymbolReader GetReader(System.IntPtr importer, string filename, string searchPath); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolDocument { System.Guid CheckSumAlgorithmId { get; } System.Guid DocumentType { get; } bool HasEmbeddedSource { get; } System.Guid Language { get; } System.Guid LanguageVendor { get; } int SourceLength { get; } string URL { get; } int FindClosestLine(int line); byte[] GetCheckSum(); byte[] GetSourceRange(int startLine, int startColumn, int endLine, int endColumn); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolDocumentWriter { void SetCheckSum(System.Guid algorithmId, byte[] checkSum); void SetSource(byte[] source); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolMethod { System.Diagnostics.SymbolStore.ISymbolScope RootScope { get; } int SequencePointCount { get; } System.Diagnostics.SymbolStore.SymbolToken Token { get; } System.Diagnostics.SymbolStore.ISymbolNamespace GetNamespace(); int GetOffset(System.Diagnostics.SymbolStore.ISymbolDocument document, int line, int column); System.Diagnostics.SymbolStore.ISymbolVariable[] GetParameters(); int[] GetRanges(System.Diagnostics.SymbolStore.ISymbolDocument document, int line, int column); System.Diagnostics.SymbolStore.ISymbolScope GetScope(int offset); void GetSequencePoints(int[] offsets, System.Diagnostics.SymbolStore.ISymbolDocument[] documents, int[] lines, int[] columns, int[] endLines, int[] endColumns); bool GetSourceStartEnd(System.Diagnostics.SymbolStore.ISymbolDocument[] docs, int[] lines, int[] columns); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolNamespace { string Name { get; } System.Diagnostics.SymbolStore.ISymbolNamespace[] GetNamespaces(); System.Diagnostics.SymbolStore.ISymbolVariable[] GetVariables(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolReader { System.Diagnostics.SymbolStore.SymbolToken UserEntryPoint { get; } System.Diagnostics.SymbolStore.ISymbolDocument GetDocument(string url, System.Guid language, System.Guid languageVendor, System.Guid documentType); System.Diagnostics.SymbolStore.ISymbolDocument[] GetDocuments(); System.Diagnostics.SymbolStore.ISymbolVariable[] GetGlobalVariables(); System.Diagnostics.SymbolStore.ISymbolMethod GetMethod(System.Diagnostics.SymbolStore.SymbolToken method); System.Diagnostics.SymbolStore.ISymbolMethod GetMethod(System.Diagnostics.SymbolStore.SymbolToken method, int version); System.Diagnostics.SymbolStore.ISymbolMethod GetMethodFromDocumentPosition(System.Diagnostics.SymbolStore.ISymbolDocument document, int line, int column); System.Diagnostics.SymbolStore.ISymbolNamespace[] GetNamespaces(); byte[] GetSymAttribute(System.Diagnostics.SymbolStore.SymbolToken parent, string name); System.Diagnostics.SymbolStore.ISymbolVariable[] GetVariables(System.Diagnostics.SymbolStore.SymbolToken parent); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolScope { int EndOffset { get; } System.Diagnostics.SymbolStore.ISymbolMethod Method { get; } System.Diagnostics.SymbolStore.ISymbolScope Parent { get; } int StartOffset { get; } System.Diagnostics.SymbolStore.ISymbolScope[] GetChildren(); System.Diagnostics.SymbolStore.ISymbolVariable[] GetLocals(); System.Diagnostics.SymbolStore.ISymbolNamespace[] GetNamespaces(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolVariable { int AddressField1 { get; } int AddressField2 { get; } int AddressField3 { get; } System.Diagnostics.SymbolStore.SymAddressKind AddressKind { get; } object Attributes { get; } int EndOffset { get; } string Name { get; } int StartOffset { get; } byte[] GetSignature(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISymbolWriter { void Close(); void CloseMethod(); void CloseNamespace(); void CloseScope(int endOffset); System.Diagnostics.SymbolStore.ISymbolDocumentWriter DefineDocument(string url, System.Guid language, System.Guid languageVendor, System.Guid documentType); void DefineField(System.Diagnostics.SymbolStore.SymbolToken parent, string name, System.Reflection.FieldAttributes attributes, byte[] signature, System.Diagnostics.SymbolStore.SymAddressKind addrKind, int addr1, int addr2, int addr3); void DefineGlobalVariable(string name, System.Reflection.FieldAttributes attributes, byte[] signature, System.Diagnostics.SymbolStore.SymAddressKind addrKind, int addr1, int addr2, int addr3); void DefineLocalVariable(string name, System.Reflection.FieldAttributes attributes, byte[] signature, System.Diagnostics.SymbolStore.SymAddressKind addrKind, int addr1, int addr2, int addr3, int startOffset, int endOffset); void DefineParameter(string name, System.Reflection.ParameterAttributes attributes, int sequence, System.Diagnostics.SymbolStore.SymAddressKind addrKind, int addr1, int addr2, int addr3); void DefineSequencePoints(System.Diagnostics.SymbolStore.ISymbolDocumentWriter document, int[] offsets, int[] lines, int[] columns, int[] endLines, int[] endColumns); void Initialize(System.IntPtr emitter, string filename, bool fFullBuild); void OpenMethod(System.Diagnostics.SymbolStore.SymbolToken method); void OpenNamespace(string name); int OpenScope(int startOffset); void SetMethodSourceRange(System.Diagnostics.SymbolStore.ISymbolDocumentWriter startDoc, int startLine, int startColumn, System.Diagnostics.SymbolStore.ISymbolDocumentWriter endDoc, int endLine, int endColumn); void SetScopeRange(int scopeID, int startOffset, int endOffset); void SetSymAttribute(System.Diagnostics.SymbolStore.SymbolToken parent, string name, byte[] data); void SetUnderlyingWriter(System.IntPtr underlyingWriter); void SetUserEntryPoint(System.Diagnostics.SymbolStore.SymbolToken entryMethod); void UsingNamespace(string fullName); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum SymAddressKind { BitField = 9, ILOffset = 1, NativeOffset = 5, NativeRegister = 3, NativeRegisterRegister = 6, NativeRegisterRelative = 4, NativeRegisterStack = 7, NativeRVA = 2, NativeSectionOffset = 10, NativeStackRegister = 8, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SymbolToken { private readonly int _dummyPrimitive; public SymbolToken(int val) { throw null; } public bool Equals(System.Diagnostics.SymbolStore.SymbolToken obj) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public int GetToken() { throw null; } public static bool operator ==(System.Diagnostics.SymbolStore.SymbolToken a, System.Diagnostics.SymbolStore.SymbolToken b) { throw null; } public static bool operator !=(System.Diagnostics.SymbolStore.SymbolToken a, System.Diagnostics.SymbolStore.SymbolToken b) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SymDocumentType { public static readonly System.Guid Text; public SymDocumentType() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SymLanguageType { public static readonly System.Guid Basic; public static readonly System.Guid C; public static readonly System.Guid Cobol; public static readonly System.Guid CPlusPlus; public static readonly System.Guid CSharp; public static readonly System.Guid ILAssembly; public static readonly System.Guid Java; public static readonly System.Guid JScript; public static readonly System.Guid MCPlusPlus; public static readonly System.Guid Pascal; public static readonly System.Guid SMC; public SymLanguageType() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SymLanguageVendor { public static readonly System.Guid Microsoft; public SymLanguageVendor() { } } } namespace System.Diagnostics.Tracing { [System.FlagsAttribute] public enum EventActivityOptions { Detachable = 8, Disable = 2, None = 0, Recursive = 4, } [System.AttributeUsageAttribute(System.AttributeTargets.Method)] public sealed partial class EventAttribute : System.Attribute { public EventAttribute(int eventId) { } public System.Diagnostics.Tracing.EventActivityOptions ActivityOptions { get { throw null; } set { } } public System.Diagnostics.Tracing.EventChannel Channel { get { throw null; } set { } } public int EventId { get { throw null; } } public System.Diagnostics.Tracing.EventKeywords Keywords { get { throw null; } set { } } public System.Diagnostics.Tracing.EventLevel Level { get { throw null; } set { } } public string Message { get { throw null; } set { } } public System.Diagnostics.Tracing.EventOpcode Opcode { get { throw null; } set { } } public System.Diagnostics.Tracing.EventTags Tags { get { throw null; } set { } } public System.Diagnostics.Tracing.EventTask Task { get { throw null; } set { } } public byte Version { get { throw null; } set { } } } public enum EventChannel : byte { Admin = (byte)16, Analytic = (byte)18, Debug = (byte)19, None = (byte)0, Operational = (byte)17, } public enum EventCommand { Disable = -3, Enable = -2, SendManifest = -1, Update = 0, } public partial class EventCommandEventArgs : System.EventArgs { internal EventCommandEventArgs() { } public System.Collections.Generic.IDictionary Arguments { get { throw null; } } public System.Diagnostics.Tracing.EventCommand Command { get { throw null; } } public bool DisableEvent(int eventId) { throw null; } public bool EnableEvent(int eventId) { throw null; } } public partial class EventCounter : System.IDisposable { public EventCounter(string name, System.Diagnostics.Tracing.EventSource eventSource) { } public void Dispose() { } public void WriteMetric(float value) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Struct, Inherited=false)] public partial class EventDataAttribute : System.Attribute { public EventDataAttribute() { } [System.MonoTODOAttribute] public string Name { get { throw null; } set { } } } [System.AttributeUsageAttribute(System.AttributeTargets.Property)] public partial class EventFieldAttribute : System.Attribute { public EventFieldAttribute() { } [System.MonoTODOAttribute] public System.Diagnostics.Tracing.EventFieldFormat Format { get { throw null; } set { } } [System.MonoTODOAttribute] public System.Diagnostics.Tracing.EventFieldTags Tags { get { throw null; } set { } } } public enum EventFieldFormat { Boolean = 3, Default = 0, Hexadecimal = 4, HResult = 15, Json = 12, String = 2, Xml = 11, } [System.FlagsAttribute] public enum EventFieldTags { None = 0, } [System.AttributeUsageAttribute(System.AttributeTargets.Property)] public partial class EventIgnoreAttribute : System.Attribute { public EventIgnoreAttribute() { } } [System.FlagsAttribute] public enum EventKeywords : long { All = (long)-1, AuditFailure = (long)4503599627370496, AuditSuccess = (long)9007199254740992, CorrelationHint = (long)4503599627370496, EventLogClassic = (long)36028797018963968, MicrosoftTelemetry = (long)562949953421312, None = (long)0, Sqm = (long)2251799813685248, WdiContext = (long)562949953421312, WdiDiagnostic = (long)1125899906842624, } public enum EventLevel { Critical = 1, Error = 2, Informational = 4, LogAlways = 0, Verbose = 5, Warning = 3, } public partial class EventListener : System.IDisposable { public EventListener() { } public event System.EventHandler EventSourceCreated { add { } remove { } } public event System.EventHandler EventWritten { add { } remove { } } public void DisableEvents(System.Diagnostics.Tracing.EventSource eventSource) { } public virtual void Dispose() { } public void EnableEvents(System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventLevel level) { } public void EnableEvents(System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventLevel level, System.Diagnostics.Tracing.EventKeywords matchAnyKeyword) { } public void EnableEvents(System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventLevel level, System.Diagnostics.Tracing.EventKeywords matchAnyKeyword, System.Collections.Generic.IDictionary arguments) { } public static int EventSourceIndex(System.Diagnostics.Tracing.EventSource eventSource) { throw null; } protected internal virtual void OnEventSourceCreated(System.Diagnostics.Tracing.EventSource eventSource) { } protected internal virtual void OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs eventData) { } } [System.FlagsAttribute] public enum EventManifestOptions { AllCultures = 2, AllowEventSourceOverride = 8, None = 0, OnlyIfNeededForRegistration = 4, Strict = 1, } public enum EventOpcode { DataCollectionStart = 3, DataCollectionStop = 4, Extension = 5, Info = 0, Receive = 240, Reply = 6, Resume = 7, Send = 9, Start = 1, Stop = 2, Suspend = 8, } public partial class EventSource : System.IDisposable { protected EventSource() { } protected EventSource(bool throwOnEventWriteErrors) { } protected EventSource(System.Diagnostics.Tracing.EventSourceSettings settings) { } protected EventSource(System.Diagnostics.Tracing.EventSourceSettings settings, params string[] traits) { } public EventSource(string eventSourceName) { } public EventSource(string eventSourceName, System.Diagnostics.Tracing.EventSourceSettings config) { } public EventSource(string eventSourceName, System.Diagnostics.Tracing.EventSourceSettings config, params string[] traits) { } public System.Exception ConstructionException { get { throw null; } } public static System.Guid CurrentThreadActivityId { get { throw null; } } public System.Guid Guid { get { throw null; } } public string Name { get { throw null; } } public System.Diagnostics.Tracing.EventSourceSettings Settings { get { throw null; } } public event System.EventHandler EventCommandExecuted { add { } remove { } } public void Dispose() { } protected virtual void Dispose(bool disposing) { } ~EventSource() { } public static string GenerateManifest(System.Type eventSourceType, string assemblyPathToIncludeInManifest) { throw null; } public static string GenerateManifest(System.Type eventSourceType, string assemblyPathToIncludeInManifest, System.Diagnostics.Tracing.EventManifestOptions flags) { throw null; } public static System.Guid GetGuid(System.Type eventSourceType) { throw null; } public static string GetName(System.Type eventSourceType) { throw null; } public static System.Collections.Generic.IEnumerable GetSources() { throw null; } public string GetTrait(string key) { throw null; } public bool IsEnabled() { throw null; } public bool IsEnabled(System.Diagnostics.Tracing.EventLevel level, System.Diagnostics.Tracing.EventKeywords keywords) { throw null; } public bool IsEnabled(System.Diagnostics.Tracing.EventLevel level, System.Diagnostics.Tracing.EventKeywords keywords, System.Diagnostics.Tracing.EventChannel channel) { throw null; } protected virtual void OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs command) { } public static void SendCommand(System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventCommand command, System.Collections.Generic.IDictionary commandArguments) { } public static void SetCurrentThreadActivityId(System.Guid activityId) { } public static void SetCurrentThreadActivityId(System.Guid activityId, out System.Guid oldActivityThatWillContinue) { throw null; } public void Write(string eventName) { } public void Write(string eventName, System.Diagnostics.Tracing.EventSourceOptions options) { } protected void WriteEvent(int eventId) { } protected void WriteEvent(int eventId, byte[] arg1) { } protected void WriteEvent(int eventId, int arg1) { } protected void WriteEvent(int eventId, int arg1, int arg2) { } protected void WriteEvent(int eventId, int arg1, int arg2, int arg3) { } protected void WriteEvent(int eventId, int arg1, string arg2) { } protected void WriteEvent(int eventId, long arg1) { } protected void WriteEvent(int eventId, long arg1, byte[] arg2) { } protected void WriteEvent(int eventId, long arg1, long arg2) { } protected void WriteEvent(int eventId, long arg1, long arg2, long arg3) { } protected void WriteEvent(int eventId, long arg1, string arg2) { } protected void WriteEvent(int eventId, params object[] args) { } protected void WriteEvent(int eventId, string arg1) { } protected void WriteEvent(int eventId, string arg1, int arg2) { } protected void WriteEvent(int eventId, string arg1, int arg2, int arg3) { } protected void WriteEvent(int eventId, string arg1, long arg2) { } protected void WriteEvent(int eventId, string arg1, string arg2) { } protected void WriteEvent(int eventId, string arg1, string arg2, string arg3) { } [System.CLSCompliantAttribute(false)] protected unsafe void WriteEventCore(int eventId, int eventDataCount, System.Diagnostics.Tracing.EventSource.EventData* data) { } protected void WriteEventWithRelatedActivityId(int eventId, System.Guid relatedActivityId, params object[] args) { } [System.CLSCompliantAttribute(false)] protected unsafe void WriteEventWithRelatedActivityIdCore(int eventId, System.Guid* relatedActivityId, int eventDataCount, System.Diagnostics.Tracing.EventSource.EventData* data) { } public void Write(string eventName, System.Diagnostics.Tracing.EventSourceOptions options, T data) { } public void Write(string eventName, ref System.Diagnostics.Tracing.EventSourceOptions options, ref System.Guid activityId, ref System.Guid relatedActivityId, ref T data) { } [System.CLSCompliantAttribute(false)] public void Write(string eventName, ref System.Diagnostics.Tracing.EventSourceOptions options, ref T data) { } public void Write(string eventName, T data) { } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] protected internal partial struct EventData { private int _dummyPrimitive; public System.IntPtr DataPointer { get { throw null; } set { } } public int Size { get { throw null; } set { } } } } [System.AttributeUsageAttribute(System.AttributeTargets.Class)] public sealed partial class EventSourceAttribute : System.Attribute { public EventSourceAttribute() { } public string Guid { get { throw null; } set { } } public string LocalizationResources { get { throw null; } set { } } public string Name { get { throw null; } set { } } } public partial class EventSourceCreatedEventArgs : System.EventArgs { public EventSourceCreatedEventArgs() { } public System.Diagnostics.Tracing.EventSource EventSource { get { throw null; } } } [System.SerializableAttribute] public partial class EventSourceException : System.Exception { public EventSourceException() { } protected EventSourceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public EventSourceException(string message) { } public EventSourceException(string message, System.Exception innerException) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct EventSourceOptions { private int _dummyPrimitive; public System.Diagnostics.Tracing.EventActivityOptions ActivityOptions { get { throw null; } set { } } public System.Diagnostics.Tracing.EventKeywords Keywords { get { throw null; } set { } } public System.Diagnostics.Tracing.EventLevel Level { get { throw null; } set { } } public System.Diagnostics.Tracing.EventOpcode Opcode { get { throw null; } set { } } public System.Diagnostics.Tracing.EventTags Tags { get { throw null; } set { } } } [System.FlagsAttribute] public enum EventSourceSettings { Default = 0, EtwManifestEventFormat = 4, EtwSelfDescribingEventFormat = 8, ThrowOnEventWriteErrors = 1, } [System.FlagsAttribute] public enum EventTags { None = 0, } public enum EventTask { None = 0, } public partial class EventWrittenEventArgs : System.EventArgs { internal EventWrittenEventArgs() { } public System.Guid ActivityId { get { throw null; } } public System.Diagnostics.Tracing.EventChannel Channel { get { throw null; } } public int EventId { get { throw null; } } public string EventName { get { throw null; } } public System.Diagnostics.Tracing.EventSource EventSource { get { throw null; } } public System.Diagnostics.Tracing.EventKeywords Keywords { get { throw null; } } public System.Diagnostics.Tracing.EventLevel Level { get { throw null; } } public string Message { get { throw null; } } public System.Diagnostics.Tracing.EventOpcode Opcode { get { throw null; } } public System.Collections.ObjectModel.ReadOnlyCollection Payload { get { throw null; } } public System.Collections.ObjectModel.ReadOnlyCollection PayloadNames { get { throw null; } } public System.Guid RelatedActivityId { get { throw null; } } public System.Diagnostics.Tracing.EventTags Tags { get { throw null; } } public System.Diagnostics.Tracing.EventTask Task { get { throw null; } } public byte Version { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Method)] public sealed partial class NonEventAttribute : System.Attribute { public NonEventAttribute() { } } } namespace System.Globalization { [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class Calendar : System.ICloneable { public const int CurrentEra = 0; protected Calendar() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } protected virtual int DaysInYearBeforeMinSupportedYear { get { throw null; } } public abstract int[] Eras { get; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool IsReadOnly { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual System.DateTime MinSupportedDateTime { get { throw null; } } public virtual int TwoDigitYearMax { get { throw null; } set { } } public virtual System.DateTime AddDays(System.DateTime time, int days) { throw null; } public virtual System.DateTime AddHours(System.DateTime time, int hours) { throw null; } public virtual System.DateTime AddMilliseconds(System.DateTime time, double milliseconds) { throw null; } public virtual System.DateTime AddMinutes(System.DateTime time, int minutes) { throw null; } public abstract System.DateTime AddMonths(System.DateTime time, int months); public virtual System.DateTime AddSeconds(System.DateTime time, int seconds) { throw null; } public virtual System.DateTime AddWeeks(System.DateTime time, int weeks) { throw null; } public abstract System.DateTime AddYears(System.DateTime time, int years); [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual object Clone() { throw null; } public abstract int GetDayOfMonth(System.DateTime time); public abstract System.DayOfWeek GetDayOfWeek(System.DateTime time); public abstract int GetDayOfYear(System.DateTime time); public virtual int GetDaysInMonth(int year, int month) { throw null; } public abstract int GetDaysInMonth(int year, int month, int era); public virtual int GetDaysInYear(int year) { throw null; } public abstract int GetDaysInYear(int year, int era); public abstract int GetEra(System.DateTime time); public virtual int GetHour(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual int GetLeapMonth(int year) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual int GetLeapMonth(int year, int era) { throw null; } public virtual double GetMilliseconds(System.DateTime time) { throw null; } public virtual int GetMinute(System.DateTime time) { throw null; } public abstract int GetMonth(System.DateTime time); public virtual int GetMonthsInYear(int year) { throw null; } public abstract int GetMonthsInYear(int year, int era); public virtual int GetSecond(System.DateTime time) { throw null; } public virtual int GetWeekOfYear(System.DateTime time, System.Globalization.CalendarWeekRule rule, System.DayOfWeek firstDayOfWeek) { throw null; } public abstract int GetYear(System.DateTime time); public virtual bool IsLeapDay(int year, int month, int day) { throw null; } public abstract bool IsLeapDay(int year, int month, int day, int era); public virtual bool IsLeapMonth(int year, int month) { throw null; } public abstract bool IsLeapMonth(int year, int month, int era); public virtual bool IsLeapYear(int year) { throw null; } public abstract bool IsLeapYear(int year, int era); [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static System.Globalization.Calendar ReadOnly(System.Globalization.Calendar calendar) { throw null; } public virtual System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond) { throw null; } public abstract System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era); public virtual int ToFourDigitYear(int year) { throw null; } } public enum CalendarAlgorithmType { LunarCalendar = 2, LunisolarCalendar = 3, SolarCalendar = 1, Unknown = 0, } public enum CalendarWeekRule { FirstDay = 0, FirstFourDayWeek = 2, FirstFullWeek = 1, } public static partial class CharUnicodeInfo { public static int GetDecimalDigitValue(char ch) { throw null; } public static int GetDecimalDigitValue(string s, int index) { throw null; } public static int GetDigitValue(char ch) { throw null; } public static int GetDigitValue(string s, int index) { throw null; } public static double GetNumericValue(char ch) { throw null; } public static double GetNumericValue(string s, int index) { throw null; } public static System.Globalization.UnicodeCategory GetUnicodeCategory(char ch) { throw null; } public static System.Globalization.UnicodeCategory GetUnicodeCategory(int codePoint) { throw null; } public static System.Globalization.UnicodeCategory GetUnicodeCategory(string s, int index) { throw null; } } [System.SerializableAttribute] public partial class ChineseLunisolarCalendar : System.Globalization.EastAsianLunisolarCalendar { public const int ChineseEra = 1; public ChineseLunisolarCalendar() { } protected override int DaysInYearBeforeMinSupportedYear { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int[] Eras { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetEra(System.DateTime time) { throw null; } } [System.SerializableAttribute] public partial class CompareInfo : System.Runtime.Serialization.IDeserializationCallback { internal CompareInfo() { } public int LCID { get { throw null; } } public virtual string Name { get { throw null; } } public System.Globalization.SortVersion Version { get { throw null; } } public virtual int Compare(string string1, int offset1, int length1, string string2, int offset2, int length2) { throw null; } public virtual int Compare(string string1, int offset1, int length1, string string2, int offset2, int length2, System.Globalization.CompareOptions options) { throw null; } public virtual int Compare(string string1, int offset1, string string2, int offset2) { throw null; } public virtual int Compare(string string1, int offset1, string string2, int offset2, System.Globalization.CompareOptions options) { throw null; } public virtual int Compare(string string1, string string2) { throw null; } public virtual int Compare(string string1, string string2, System.Globalization.CompareOptions options) { throw null; } public override bool Equals(object value) { throw null; } public static System.Globalization.CompareInfo GetCompareInfo(int culture) { throw null; } public static System.Globalization.CompareInfo GetCompareInfo(int culture, System.Reflection.Assembly assembly) { throw null; } public static System.Globalization.CompareInfo GetCompareInfo(string name) { throw null; } public static System.Globalization.CompareInfo GetCompareInfo(string name, System.Reflection.Assembly assembly) { throw null; } public override int GetHashCode() { throw null; } public virtual int GetHashCode(string source, System.Globalization.CompareOptions options) { throw null; } public virtual System.Globalization.SortKey GetSortKey(string source) { throw null; } public virtual System.Globalization.SortKey GetSortKey(string source, System.Globalization.CompareOptions options) { throw null; } public virtual int IndexOf(string source, char value) { throw null; } public virtual int IndexOf(string source, char value, System.Globalization.CompareOptions options) { throw null; } public virtual int IndexOf(string source, char value, int startIndex) { throw null; } public virtual int IndexOf(string source, char value, int startIndex, System.Globalization.CompareOptions options) { throw null; } public virtual int IndexOf(string source, char value, int startIndex, int count) { throw null; } public virtual int IndexOf(string source, char value, int startIndex, int count, System.Globalization.CompareOptions options) { throw null; } public virtual int IndexOf(string source, string value) { throw null; } public virtual int IndexOf(string source, string value, System.Globalization.CompareOptions options) { throw null; } public virtual int IndexOf(string source, string value, int startIndex) { throw null; } public virtual int IndexOf(string source, string value, int startIndex, System.Globalization.CompareOptions options) { throw null; } public virtual int IndexOf(string source, string value, int startIndex, int count) { throw null; } public virtual int IndexOf(string source, string value, int startIndex, int count, System.Globalization.CompareOptions options) { throw null; } public virtual bool IsPrefix(string source, string prefix) { throw null; } public virtual bool IsPrefix(string source, string prefix, System.Globalization.CompareOptions options) { throw null; } public static bool IsSortable(char ch) { throw null; } public static bool IsSortable(string text) { throw null; } public virtual bool IsSuffix(string source, string suffix) { throw null; } public virtual bool IsSuffix(string source, string suffix, System.Globalization.CompareOptions options) { throw null; } public virtual int LastIndexOf(string source, char value) { throw null; } public virtual int LastIndexOf(string source, char value, System.Globalization.CompareOptions options) { throw null; } public virtual int LastIndexOf(string source, char value, int startIndex) { throw null; } public virtual int LastIndexOf(string source, char value, int startIndex, System.Globalization.CompareOptions options) { throw null; } public virtual int LastIndexOf(string source, char value, int startIndex, int count) { throw null; } public virtual int LastIndexOf(string source, char value, int startIndex, int count, System.Globalization.CompareOptions options) { throw null; } public virtual int LastIndexOf(string source, string value) { throw null; } public virtual int LastIndexOf(string source, string value, System.Globalization.CompareOptions options) { throw null; } public virtual int LastIndexOf(string source, string value, int startIndex) { throw null; } public virtual int LastIndexOf(string source, string value, int startIndex, System.Globalization.CompareOptions options) { throw null; } public virtual int LastIndexOf(string source, string value, int startIndex, int count) { throw null; } public virtual int LastIndexOf(string source, string value, int startIndex, int count, System.Globalization.CompareOptions options) { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } public override string ToString() { throw null; } } [System.FlagsAttribute] public enum CompareOptions { IgnoreCase = 1, IgnoreKanaType = 8, IgnoreNonSpace = 2, IgnoreSymbols = 4, IgnoreWidth = 16, None = 0, Ordinal = 1073741824, OrdinalIgnoreCase = 268435456, StringSort = 536870912, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class CultureInfo : System.ICloneable, System.IFormatProvider { public CultureInfo(int culture) { } public CultureInfo(int culture, bool useUserOverride) { } public CultureInfo(string name) { } public CultureInfo(string name, bool useUserOverride) { } public virtual System.Globalization.Calendar Calendar { get { throw null; } } public virtual System.Globalization.CompareInfo CompareInfo { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Globalization.CultureTypes CultureTypes { get { throw null; } } public static System.Globalization.CultureInfo CurrentCulture { get { throw null; } set { } } public static System.Globalization.CultureInfo CurrentUICulture { get { throw null; } set { } } public virtual System.Globalization.DateTimeFormatInfo DateTimeFormat { get { throw null; } set { } } public static System.Globalization.CultureInfo DefaultThreadCurrentCulture { get { throw null; } set { } } public static System.Globalization.CultureInfo DefaultThreadCurrentUICulture { get { throw null; } set { } } public virtual string DisplayName { get { throw null; } } public virtual string EnglishName { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public string IetfLanguageTag { get { throw null; } } public static System.Globalization.CultureInfo InstalledUICulture { get { throw null; } } public static System.Globalization.CultureInfo InvariantCulture { get { throw null; } } public virtual bool IsNeutralCulture { get { throw null; } } public bool IsReadOnly { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual int KeyboardLayoutId { get { throw null; } } public virtual int LCID { get { throw null; } } public virtual string Name { get { throw null; } } public virtual string NativeName { get { throw null; } } public virtual System.Globalization.NumberFormatInfo NumberFormat { get { throw null; } set { } } [System.MonoLimitationAttribute("Optional calendars are not supported only default calendar is returned")] public virtual System.Globalization.Calendar[] OptionalCalendars { get { throw null; } } public virtual System.Globalization.CultureInfo Parent { get { throw null; } } public virtual System.Globalization.TextInfo TextInfo { get { throw null; } } public virtual string ThreeLetterISOLanguageName { get { throw null; } } public virtual string ThreeLetterWindowsLanguageName { get { throw null; } } public virtual string TwoLetterISOLanguageName { get { throw null; } } public bool UseUserOverride { get { throw null; } } public void ClearCachedData() { } public virtual object Clone() { throw null; } public static System.Globalization.CultureInfo CreateSpecificCulture(string name) { throw null; } public override bool Equals(object value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Globalization.CultureInfo GetConsoleFallbackUICulture() { throw null; } public static System.Globalization.CultureInfo GetCultureInfo(int culture) { throw null; } public static System.Globalization.CultureInfo GetCultureInfo(string name) { throw null; } [System.MonoTODOAttribute("Currently it ignores the altName parameter")] public static System.Globalization.CultureInfo GetCultureInfo(string name, string altName) { throw null; } public static System.Globalization.CultureInfo GetCultureInfoByIetfLanguageTag(string name) { throw null; } public static System.Globalization.CultureInfo[] GetCultures(System.Globalization.CultureTypes types) { throw null; } public virtual object GetFormat(System.Type formatType) { throw null; } public override int GetHashCode() { throw null; } public static System.Globalization.CultureInfo ReadOnly(System.Globalization.CultureInfo ci) { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class CultureNotFoundException : System.ArgumentException { public CultureNotFoundException() { } protected CultureNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public CultureNotFoundException(string message) { } public CultureNotFoundException(string message, System.Exception innerException) { } public CultureNotFoundException(string message, int invalidCultureId, System.Exception innerException) { } public CultureNotFoundException(string paramName, int invalidCultureId, string message) { } public CultureNotFoundException(string paramName, string message) { } public CultureNotFoundException(string message, string invalidCultureName, System.Exception innerException) { } public CultureNotFoundException(string paramName, string invalidCultureName, string message) { } public virtual System.Nullable InvalidCultureId { get { throw null; } } public virtual string InvalidCultureName { get { throw null; } } public override string Message { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.FlagsAttribute] public enum CultureTypes { AllCultures = 7, [System.ObsoleteAttribute("This value has been deprecated. Please use other values in CultureTypes.")] FrameworkCultures = 64, InstalledWin32Cultures = 4, NeutralCultures = 1, ReplacementCultures = 16, SpecificCultures = 2, UserCustomCulture = 8, [System.ObsoleteAttribute("This value has been deprecated. Please use other values in CultureTypes.")] WindowsOnlyCultures = 32, } [System.SerializableAttribute] public sealed partial class DateTimeFormatInfo : System.ICloneable, System.IFormatProvider { public DateTimeFormatInfo() { } public string[] AbbreviatedDayNames { get { throw null; } set { } } public string[] AbbreviatedMonthGenitiveNames { get { throw null; } set { } } public string[] AbbreviatedMonthNames { get { throw null; } set { } } public string AMDesignator { get { throw null; } set { } } public System.Globalization.Calendar Calendar { get { throw null; } set { } } public System.Globalization.CalendarWeekRule CalendarWeekRule { get { throw null; } set { } } public static System.Globalization.DateTimeFormatInfo CurrentInfo { get { throw null; } } public string DateSeparator { get { throw null; } set { } } public string[] DayNames { get { throw null; } set { } } public System.DayOfWeek FirstDayOfWeek { get { throw null; } set { } } public string FullDateTimePattern { get { throw null; } set { } } public static System.Globalization.DateTimeFormatInfo InvariantInfo { get { throw null; } } public bool IsReadOnly { get { throw null; } } public string LongDatePattern { get { throw null; } set { } } public string LongTimePattern { get { throw null; } set { } } public string MonthDayPattern { get { throw null; } set { } } public string[] MonthGenitiveNames { get { throw null; } set { } } public string[] MonthNames { get { throw null; } set { } } public string NativeCalendarName { get { throw null; } } public string PMDesignator { get { throw null; } set { } } public string RFC1123Pattern { get { throw null; } } public string ShortDatePattern { get { throw null; } set { } } public string[] ShortestDayNames { get { throw null; } set { } } public string ShortTimePattern { get { throw null; } set { } } public string SortableDateTimePattern { get { throw null; } } public string TimeSeparator { get { throw null; } set { } } public string UniversalSortableDateTimePattern { get { throw null; } } public string YearMonthPattern { get { throw null; } set { } } public object Clone() { throw null; } public string GetAbbreviatedDayName(System.DayOfWeek dayofweek) { throw null; } public string GetAbbreviatedEraName(int era) { throw null; } public string GetAbbreviatedMonthName(int month) { throw null; } public string[] GetAllDateTimePatterns() { throw null; } public string[] GetAllDateTimePatterns(char format) { throw null; } public string GetDayName(System.DayOfWeek dayofweek) { throw null; } public int GetEra(string eraName) { throw null; } public string GetEraName(int era) { throw null; } public object GetFormat(System.Type formatType) { throw null; } public static System.Globalization.DateTimeFormatInfo GetInstance(System.IFormatProvider provider) { throw null; } public string GetMonthName(int month) { throw null; } public string GetShortestDayName(System.DayOfWeek dayOfWeek) { throw null; } public static System.Globalization.DateTimeFormatInfo ReadOnly(System.Globalization.DateTimeFormatInfo dtfi) { throw null; } public void SetAllDateTimePatterns(string[] patterns, char format) { } } [System.FlagsAttribute] public enum DateTimeStyles { AdjustToUniversal = 16, AllowInnerWhite = 4, AllowLeadingWhite = 1, AllowTrailingWhite = 2, AllowWhiteSpaces = 7, AssumeLocal = 32, AssumeUniversal = 64, NoCurrentDateDefault = 8, None = 0, RoundtripKind = 128, } [System.SerializableAttribute] public partial class DaylightTime { public DaylightTime(System.DateTime start, System.DateTime end, System.TimeSpan delta) { } public System.TimeSpan Delta { get { throw null; } } public System.DateTime End { get { throw null; } } public System.DateTime Start { get { throw null; } } } public enum DigitShapes { Context = 0, NativeNational = 2, None = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class EastAsianLunisolarCalendar : System.Globalization.Calendar { internal EastAsianLunisolarCalendar() { } public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public int GetCelestialStem(int sexagenaryYear) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } public virtual int GetSexagenaryYear(System.DateTime time) { throw null; } public int GetTerrestrialBranch(int sexagenaryYear) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } public static partial class GlobalizationExtensions { public static System.StringComparer GetStringComparer(this System.Globalization.CompareInfo compareInfo, System.Globalization.CompareOptions options) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class GregorianCalendar : System.Globalization.Calendar { public const int ADEra = 1; public GregorianCalendar() { } public GregorianCalendar(System.Globalization.GregorianCalendarTypes type) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public virtual System.Globalization.GregorianCalendarTypes CalendarType { get { throw null; } set { } } public override int[] Eras { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum GregorianCalendarTypes { Arabic = 10, Localized = 1, MiddleEastFrench = 9, TransliteratedEnglish = 11, TransliteratedFrench = 12, USEnglish = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class HebrewCalendar : System.Globalization.Calendar { public static readonly int HebrewEra; public HebrewCalendar() { } public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int[] Eras { get { throw null; } } public override System.DateTime MaxSupportedDateTime { get { throw null; } } public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class HijriCalendar : System.Globalization.Calendar { public static readonly int HijriEra; public HijriCalendar() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } protected override int DaysInYearBeforeMinSupportedYear { get { throw null; } } public override int[] Eras { get { throw null; } } public int HijriAdjustment { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } public sealed partial class IdnMapping { public IdnMapping() { } public bool AllowUnassigned { get { throw null; } set { } } public bool UseStd3AsciiRules { get { throw null; } set { } } public override bool Equals(object obj) { throw null; } public string GetAscii(string unicode) { throw null; } public string GetAscii(string unicode, int index) { throw null; } public string GetAscii(string unicode, int index, int count) { throw null; } public override int GetHashCode() { throw null; } public string GetUnicode(string ascii) { throw null; } public string GetUnicode(string ascii, int index) { throw null; } public string GetUnicode(string ascii, int index, int count) { throw null; } } public static partial class ISOWeek { public static int GetWeekOfYear(System.DateTime date) { throw null; } public static int GetWeeksInYear(int year) { throw null; } public static int GetYear(System.DateTime date) { throw null; } public static System.DateTime GetYearEnd(int year) { throw null; } public static System.DateTime GetYearStart(int year) { throw null; } public static System.DateTime ToDateTime(int year, int week, System.DayOfWeek dayOfWeek) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class JapaneseCalendar : System.Globalization.Calendar { public JapaneseCalendar() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int[] Eras { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetWeekOfYear(System.DateTime time, System.Globalization.CalendarWeekRule rule, System.DayOfWeek firstDayOfWeek) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.SerializableAttribute] public partial class JapaneseLunisolarCalendar : System.Globalization.EastAsianLunisolarCalendar { public const int JapaneseEra = 1; public JapaneseLunisolarCalendar() { } protected override int DaysInYearBeforeMinSupportedYear { get { throw null; } } public override int[] Eras { get { throw null; } } public override System.DateTime MaxSupportedDateTime { get { throw null; } } public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int GetEra(System.DateTime time) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class JulianCalendar : System.Globalization.Calendar { public static readonly int JulianEra; public JulianCalendar() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int[] Eras { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class KoreanCalendar : System.Globalization.Calendar { public const int KoreanEra = 1; public KoreanCalendar() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int[] Eras { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetWeekOfYear(System.DateTime time, System.Globalization.CalendarWeekRule rule, System.DayOfWeek firstDayOfWeek) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.SerializableAttribute] public partial class KoreanLunisolarCalendar : System.Globalization.EastAsianLunisolarCalendar { public const int GregorianEra = 1; public KoreanLunisolarCalendar() { } protected override int DaysInYearBeforeMinSupportedYear { get { throw null; } } public override int[] Eras { get { throw null; } } public override System.DateTime MaxSupportedDateTime { get { throw null; } } public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int GetEra(System.DateTime time) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class NumberFormatInfo : System.ICloneable, System.IFormatProvider { public NumberFormatInfo() { } public int CurrencyDecimalDigits { get { throw null; } set { } } public string CurrencyDecimalSeparator { get { throw null; } set { } } public string CurrencyGroupSeparator { get { throw null; } set { } } public int[] CurrencyGroupSizes { get { throw null; } set { } } public int CurrencyNegativePattern { get { throw null; } set { } } public int CurrencyPositivePattern { get { throw null; } set { } } public string CurrencySymbol { get { throw null; } set { } } public static System.Globalization.NumberFormatInfo CurrentInfo { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Globalization.DigitShapes DigitSubstitution { get { throw null; } set { } } public static System.Globalization.NumberFormatInfo InvariantInfo { get { throw null; } } public bool IsReadOnly { get { throw null; } } public string NaNSymbol { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public string[] NativeDigits { get { throw null; } set { } } public string NegativeInfinitySymbol { get { throw null; } set { } } public string NegativeSign { get { throw null; } set { } } public int NumberDecimalDigits { get { throw null; } set { } } public string NumberDecimalSeparator { get { throw null; } set { } } public string NumberGroupSeparator { get { throw null; } set { } } public int[] NumberGroupSizes { get { throw null; } set { } } public int NumberNegativePattern { get { throw null; } set { } } public int PercentDecimalDigits { get { throw null; } set { } } public string PercentDecimalSeparator { get { throw null; } set { } } public string PercentGroupSeparator { get { throw null; } set { } } public int[] PercentGroupSizes { get { throw null; } set { } } public int PercentNegativePattern { get { throw null; } set { } } public int PercentPositivePattern { get { throw null; } set { } } public string PercentSymbol { get { throw null; } set { } } public string PerMilleSymbol { get { throw null; } set { } } public string PositiveInfinitySymbol { get { throw null; } set { } } public string PositiveSign { get { throw null; } set { } } public object Clone() { throw null; } public object GetFormat(System.Type formatType) { throw null; } public static System.Globalization.NumberFormatInfo GetInstance(System.IFormatProvider formatProvider) { throw null; } public static System.Globalization.NumberFormatInfo ReadOnly(System.Globalization.NumberFormatInfo nfi) { throw null; } } [System.FlagsAttribute] public enum NumberStyles { AllowCurrencySymbol = 256, AllowDecimalPoint = 32, AllowExponent = 128, AllowHexSpecifier = 512, AllowLeadingSign = 4, AllowLeadingWhite = 1, AllowParentheses = 16, AllowThousands = 64, AllowTrailingSign = 8, AllowTrailingWhite = 2, Any = 511, Currency = 383, Float = 167, HexNumber = 515, Integer = 7, None = 0, Number = 111, } [System.SerializableAttribute] public partial class PersianCalendar : System.Globalization.Calendar { public static readonly int PersianEra; public PersianCalendar() { } public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int[] Eras { get { throw null; } } public override System.DateTime MaxSupportedDateTime { get { throw null; } } public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class RegionInfo { public RegionInfo(int culture) { } public RegionInfo(string name) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual string CurrencyEnglishName { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual string CurrencyNativeName { get { throw null; } } public virtual string CurrencySymbol { get { throw null; } } public static System.Globalization.RegionInfo CurrentRegion { get { throw null; } } [System.MonoTODOAttribute("DisplayName currently only returns the EnglishName")] public virtual string DisplayName { get { throw null; } } public virtual string EnglishName { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual int GeoId { get { throw null; } } public virtual bool IsMetric { get { throw null; } } public virtual string ISOCurrencySymbol { get { throw null; } } public virtual string Name { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual string NativeName { get { throw null; } } public virtual string ThreeLetterISORegionName { get { throw null; } } public virtual string ThreeLetterWindowsRegionName { get { throw null; } } public virtual string TwoLetterISORegionName { get { throw null; } } public override bool Equals(object value) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class SortKey { internal SortKey() { } public virtual byte[] KeyData { get { throw null; } } public virtual string OriginalString { get { throw null; } } public static int Compare(System.Globalization.SortKey sortkey1, System.Globalization.SortKey sortkey2) { throw null; } public override bool Equals(object value) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public sealed partial class SortVersion : System.IEquatable { public SortVersion(int fullVersion, System.Guid sortId) { } public int FullVersion { get { throw null; } } public System.Guid SortId { get { throw null; } } public bool Equals(System.Globalization.SortVersion other) { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw null; } public static bool operator !=(System.Globalization.SortVersion left, System.Globalization.SortVersion right) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class StringInfo { public StringInfo() { } public StringInfo(string value) { } public int LengthInTextElements { get { throw null; } } public string String { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool Equals(object value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public static string GetNextTextElement(string str) { throw null; } public static string GetNextTextElement(string str, int index) { throw null; } public static System.Globalization.TextElementEnumerator GetTextElementEnumerator(string str) { throw null; } public static System.Globalization.TextElementEnumerator GetTextElementEnumerator(string str, int index) { throw null; } public static int[] ParseCombiningCharacters(string str) { throw null; } public string SubstringByTextElements(int startingTextElement) { throw null; } public string SubstringByTextElements(int startingTextElement, int lengthInTextElements) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class TaiwanCalendar : System.Globalization.Calendar { public TaiwanCalendar() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int[] Eras { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetWeekOfYear(System.DateTime time, System.Globalization.CalendarWeekRule rule, System.DayOfWeek firstDayOfWeek) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.SerializableAttribute] public partial class TaiwanLunisolarCalendar : System.Globalization.EastAsianLunisolarCalendar { public TaiwanLunisolarCalendar() { } protected override int DaysInYearBeforeMinSupportedYear { get { throw null; } } public override int[] Eras { get { throw null; } } public override System.DateTime MaxSupportedDateTime { get { throw null; } } public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int GetEra(System.DateTime time) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class TextElementEnumerator : System.Collections.IEnumerator { internal TextElementEnumerator() { } public object Current { get { throw null; } } public int ElementIndex { get { throw null; } } public string GetTextElement() { throw null; } public bool MoveNext() { throw null; } public void Reset() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class TextInfo : System.ICloneable, System.Runtime.Serialization.IDeserializationCallback { internal TextInfo() { } public virtual int ANSICodePage { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public string CultureName { get { throw null; } } public virtual int EBCDICCodePage { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool IsReadOnly { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool IsRightToLeft { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public int LCID { get { throw null; } } public virtual string ListSeparator { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)]set { } } public virtual int MacCodePage { get { throw null; } } public virtual int OEMCodePage { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual object Clone() { throw null; } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static System.Globalization.TextInfo ReadOnly(System.Globalization.TextInfo textInfo) { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } [System.Security.SecuritySafeCriticalAttribute] public virtual char ToLower(char c) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public virtual string ToLower(string str) { throw null; } public override string ToString() { throw null; } public string ToTitleCase(string str) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public virtual char ToUpper(char c) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public virtual string ToUpper(string str) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ThaiBuddhistCalendar : System.Globalization.Calendar { public const int ThaiBuddhistEra = 1; public ThaiBuddhistCalendar() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } public override int[] Eras { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MaxSupportedDateTime { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetWeekOfYear(System.DateTime time, System.Globalization.CalendarWeekRule rule, System.DayOfWeek firstDayOfWeek) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } [System.FlagsAttribute] public enum TimeSpanStyles { AssumeNegative = 1, None = 0, } [System.SerializableAttribute] public partial class UmAlQuraCalendar : System.Globalization.Calendar { public const int UmAlQuraEra = 1; public UmAlQuraCalendar() { } public override System.Globalization.CalendarAlgorithmType AlgorithmType { get { throw null; } } protected override int DaysInYearBeforeMinSupportedYear { get { throw null; } } public override int[] Eras { get { throw null; } } public override System.DateTime MaxSupportedDateTime { get { throw null; } } public override System.DateTime MinSupportedDateTime { get { throw null; } } public override int TwoDigitYearMax { get { throw null; } set { } } public override System.DateTime AddMonths(System.DateTime time, int months) { throw null; } public override System.DateTime AddYears(System.DateTime time, int years) { throw null; } public override int GetDayOfMonth(System.DateTime time) { throw null; } public override System.DayOfWeek GetDayOfWeek(System.DateTime time) { throw null; } public override int GetDayOfYear(System.DateTime time) { throw null; } public override int GetDaysInMonth(int year, int month, int era) { throw null; } public override int GetDaysInYear(int year, int era) { throw null; } public override int GetEra(System.DateTime time) { throw null; } public override int GetLeapMonth(int year, int era) { throw null; } public override int GetMonth(System.DateTime time) { throw null; } public override int GetMonthsInYear(int year, int era) { throw null; } public override int GetYear(System.DateTime time) { throw null; } public override bool IsLeapDay(int year, int month, int day, int era) { throw null; } public override bool IsLeapMonth(int year, int month, int era) { throw null; } public override bool IsLeapYear(int year, int era) { throw null; } public override System.DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { throw null; } public override int ToFourDigitYear(int year) { throw null; } } public enum UnicodeCategory { ClosePunctuation = 21, ConnectorPunctuation = 18, Control = 14, CurrencySymbol = 26, DashPunctuation = 19, DecimalDigitNumber = 8, EnclosingMark = 7, FinalQuotePunctuation = 23, Format = 15, InitialQuotePunctuation = 22, LetterNumber = 9, LineSeparator = 12, LowercaseLetter = 1, MathSymbol = 25, ModifierLetter = 3, ModifierSymbol = 27, NonSpacingMark = 5, OpenPunctuation = 20, OtherLetter = 4, OtherNotAssigned = 29, OtherNumber = 10, OtherPunctuation = 24, OtherSymbol = 28, ParagraphSeparator = 13, PrivateUse = 17, SpaceSeparator = 11, SpacingCombiningMark = 6, Surrogate = 16, TitlecaseLetter = 2, UppercaseLetter = 0, } } namespace System.IO { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class BinaryReader : System.IDisposable { public BinaryReader(System.IO.Stream input) { } public BinaryReader(System.IO.Stream input, System.Text.Encoding encoding) { } public BinaryReader(System.IO.Stream input, System.Text.Encoding encoding, bool leaveOpen) { } public virtual System.IO.Stream BaseStream { get { throw null; } } public virtual void Close() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } protected virtual void FillBuffer(int numBytes) { } public virtual int PeekChar() { throw null; } public virtual int Read() { throw null; } public virtual int Read(byte[] buffer, int index, int count) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public virtual int Read(char[] buffer, int index, int count) { throw null; } public virtual int Read(System.Span buffer) { throw null; } public virtual int Read(System.Span buffer) { throw null; } protected internal int Read7BitEncodedInt() { throw null; } public virtual bool ReadBoolean() { throw null; } public virtual byte ReadByte() { throw null; } public virtual byte[] ReadBytes(int count) { throw null; } public virtual char ReadChar() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public virtual char[] ReadChars(int count) { throw null; } public virtual decimal ReadDecimal() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public virtual double ReadDouble() { throw null; } public virtual short ReadInt16() { throw null; } public virtual int ReadInt32() { throw null; } public virtual long ReadInt64() { throw null; } [System.CLSCompliantAttribute(false)] public virtual sbyte ReadSByte() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public virtual float ReadSingle() { throw null; } public virtual string ReadString() { throw null; } [System.CLSCompliantAttribute(false)] public virtual ushort ReadUInt16() { throw null; } [System.CLSCompliantAttribute(false)] public virtual uint ReadUInt32() { throw null; } [System.CLSCompliantAttribute(false)] public virtual ulong ReadUInt64() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class BinaryWriter : System.IDisposable { public static readonly System.IO.BinaryWriter Null; protected System.IO.Stream OutStream; protected BinaryWriter() { } public BinaryWriter(System.IO.Stream output) { } public BinaryWriter(System.IO.Stream output, System.Text.Encoding encoding) { } public BinaryWriter(System.IO.Stream output, System.Text.Encoding encoding, bool leaveOpen) { } public virtual System.IO.Stream BaseStream { get { throw null; } } public virtual void Close() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public virtual System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } public virtual void Flush() { } public virtual long Seek(int offset, System.IO.SeekOrigin origin) { throw null; } public virtual void Write(bool value) { } public virtual void Write(byte value) { } public virtual void Write(byte[] buffer) { } public virtual void Write(byte[] buffer, int index, int count) { } [System.Security.SecuritySafeCriticalAttribute] public virtual void Write(char ch) { } public virtual void Write(char[] chars) { } public virtual void Write(char[] chars, int index, int count) { } public virtual void Write(decimal value) { } [System.Security.SecuritySafeCriticalAttribute] public virtual void Write(double value) { } public virtual void Write(short value) { } public virtual void Write(int value) { } public virtual void Write(long value) { } public virtual void Write(System.ReadOnlySpan buffer) { } public virtual void Write(System.ReadOnlySpan buffer) { } [System.CLSCompliantAttribute(false)] public virtual void Write(sbyte value) { } [System.Security.SecuritySafeCriticalAttribute] public virtual void Write(float value) { } [System.Security.SecuritySafeCriticalAttribute] public virtual void Write(string value) { } [System.CLSCompliantAttribute(false)] public virtual void Write(ushort value) { } [System.CLSCompliantAttribute(false)] public virtual void Write(uint value) { } [System.CLSCompliantAttribute(false)] public virtual void Write(ulong value) { } protected void Write7BitEncodedInt(int value) { } } public sealed partial class BufferedStream : System.IO.Stream { public BufferedStream(System.IO.Stream stream) { } public BufferedStream(System.IO.Stream stream, int bufferSize) { } public int BufferSize { get { throw null; } } public override bool CanRead { get { throw null; } } public override bool CanSeek { get { throw null; } } public override bool CanWrite { get { throw null; } } public override long Length { get { throw null; } } public override long Position { get { throw null; } set { } } public System.IO.Stream UnderlyingStream { get { throw null; } } public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; } public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; } public override void CopyTo(System.IO.Stream destination, int bufferSize) { } public override System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken) { throw null; } protected override void Dispose(bool disposing) { } public override System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } public override int EndRead(System.IAsyncResult asyncResult) { throw null; } public override void EndWrite(System.IAsyncResult asyncResult) { } public override void Flush() { } public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; } public override int Read(byte[] array, int offset, int count) { throw null; } public override int Read(System.Span destination) { throw null; } public override System.Threading.Tasks.Task ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override int ReadByte() { throw null; } public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; } public override void SetLength(long value) { } public override void Write(byte[] array, int offset, int count) { } public override void Write(System.ReadOnlySpan buffer) { } public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override void WriteByte(byte value) { } } public static partial class Directory { public static System.IO.DirectoryInfo CreateDirectory(string path) { throw null; } public static void Delete(string path) { } public static void Delete(string path, bool recursive) { } public static System.Collections.Generic.IEnumerable EnumerateDirectories(string path) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateDirectories(string path, string searchPattern) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateDirectories(string path, string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateDirectories(string path, string searchPattern, System.IO.SearchOption searchOption) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFiles(string path) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFiles(string path, string searchPattern) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFiles(string path, string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFiles(string path, string searchPattern, System.IO.SearchOption searchOption) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFileSystemEntries(string path) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFileSystemEntries(string path, string searchPattern) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFileSystemEntries(string path, string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public static System.Collections.Generic.IEnumerable EnumerateFileSystemEntries(string path, string searchPattern, System.IO.SearchOption searchOption) { throw null; } public static bool Exists(string path) { throw null; } public static System.Security.AccessControl.DirectorySecurity GetAccessControl(string path) { throw null; } public static System.Security.AccessControl.DirectorySecurity GetAccessControl(string path, System.Security.AccessControl.AccessControlSections includeSections) { throw null; } public static System.DateTime GetCreationTime(string path) { throw null; } public static System.DateTime GetCreationTimeUtc(string path) { throw null; } public static string GetCurrentDirectory() { throw null; } public static string[] GetDirectories(string path) { throw null; } public static string[] GetDirectories(string path, string searchPattern) { throw null; } public static string[] GetDirectories(string path, string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public static string[] GetDirectories(string path, string searchPattern, System.IO.SearchOption searchOption) { throw null; } public static string GetDirectoryRoot(string path) { throw null; } public static string[] GetFiles(string path) { throw null; } public static string[] GetFiles(string path, string searchPattern) { throw null; } public static string[] GetFiles(string path, string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public static string[] GetFiles(string path, string searchPattern, System.IO.SearchOption searchOption) { throw null; } public static string[] GetFileSystemEntries(string path) { throw null; } public static string[] GetFileSystemEntries(string path, string searchPattern) { throw null; } public static string[] GetFileSystemEntries(string path, string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public static string[] GetFileSystemEntries(string path, string searchPattern, System.IO.SearchOption searchOption) { throw null; } public static System.DateTime GetLastAccessTime(string path) { throw null; } public static System.DateTime GetLastAccessTimeUtc(string path) { throw null; } public static System.DateTime GetLastWriteTime(string path) { throw null; } public static System.DateTime GetLastWriteTimeUtc(string path) { throw null; } public static string[] GetLogicalDrives() { throw null; } public static System.IO.DirectoryInfo GetParent(string path) { throw null; } public static void Move(string sourceDirName, string destDirName) { } public static void SetAccessControl(string path, System.Security.AccessControl.DirectorySecurity directorySecurity) { } public static void SetCreationTime(string path, System.DateTime creationTime) { } public static void SetCreationTimeUtc(string path, System.DateTime creationTimeUtc) { } public static void SetCurrentDirectory(string path) { } public static void SetLastAccessTime(string path, System.DateTime lastAccessTime) { } public static void SetLastAccessTimeUtc(string path, System.DateTime lastAccessTimeUtc) { } public static void SetLastWriteTime(string path, System.DateTime lastWriteTime) { } public static void SetLastWriteTimeUtc(string path, System.DateTime lastWriteTimeUtc) { } } [System.SerializableAttribute] public sealed partial class DirectoryInfo : System.IO.FileSystemInfo { public DirectoryInfo(string path) { } public System.IO.DirectoryInfo Parent { get { throw null; } } public System.IO.DirectoryInfo Root { get { throw null; } } public void Create() { } public System.IO.DirectoryInfo CreateSubdirectory(string path) { throw null; } public override void Delete() { } public void Delete(bool recursive) { } public System.Collections.Generic.IEnumerable EnumerateDirectories() { throw null; } public System.Collections.Generic.IEnumerable EnumerateDirectories(string searchPattern) { throw null; } public System.Collections.Generic.IEnumerable EnumerateDirectories(string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public System.Collections.Generic.IEnumerable EnumerateDirectories(string searchPattern, System.IO.SearchOption searchOption) { throw null; } public System.Collections.Generic.IEnumerable EnumerateFiles() { throw null; } public System.Collections.Generic.IEnumerable EnumerateFiles(string searchPattern) { throw null; } public System.Collections.Generic.IEnumerable EnumerateFiles(string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public System.Collections.Generic.IEnumerable EnumerateFiles(string searchPattern, System.IO.SearchOption searchOption) { throw null; } public System.Collections.Generic.IEnumerable EnumerateFileSystemInfos() { throw null; } public System.Collections.Generic.IEnumerable EnumerateFileSystemInfos(string searchPattern) { throw null; } public System.Collections.Generic.IEnumerable EnumerateFileSystemInfos(string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public System.Collections.Generic.IEnumerable EnumerateFileSystemInfos(string searchPattern, System.IO.SearchOption searchOption) { throw null; } public System.Security.AccessControl.DirectorySecurity GetAccessControl() { throw null; } public System.Security.AccessControl.DirectorySecurity GetAccessControl(System.Security.AccessControl.AccessControlSections includeSections) { throw null; } public System.IO.DirectoryInfo[] GetDirectories() { throw null; } public System.IO.DirectoryInfo[] GetDirectories(string searchPattern) { throw null; } public System.IO.DirectoryInfo[] GetDirectories(string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public System.IO.DirectoryInfo[] GetDirectories(string searchPattern, System.IO.SearchOption searchOption) { throw null; } public System.IO.FileInfo[] GetFiles() { throw null; } public System.IO.FileInfo[] GetFiles(string searchPattern) { throw null; } public System.IO.FileInfo[] GetFiles(string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public System.IO.FileInfo[] GetFiles(string searchPattern, System.IO.SearchOption searchOption) { throw null; } public System.IO.FileSystemInfo[] GetFileSystemInfos() { throw null; } public System.IO.FileSystemInfo[] GetFileSystemInfos(string searchPattern) { throw null; } public System.IO.FileSystemInfo[] GetFileSystemInfos(string searchPattern, System.IO.EnumerationOptions enumerationOptions) { throw null; } public System.IO.FileSystemInfo[] GetFileSystemInfos(string searchPattern, System.IO.SearchOption searchOption) { throw null; } public void MoveTo(string destDirName) { } public void SetAccessControl(System.Security.AccessControl.DirectorySecurity directorySecurity) { } } [System.SerializableAttribute] public partial class DirectoryNotFoundException : System.IO.IOException { public DirectoryNotFoundException() { } protected DirectoryNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public DirectoryNotFoundException(string message) { } public DirectoryNotFoundException(string message, System.Exception innerException) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class DriveInfo : System.Runtime.Serialization.ISerializable { public DriveInfo(string driveName) { } public long AvailableFreeSpace { get { throw null; } } public string DriveFormat { get { throw null; } } public System.IO.DriveType DriveType { get { throw null; } } public bool IsReady { get { throw null; } } public string Name { get { throw null; } } public System.IO.DirectoryInfo RootDirectory { get { throw null; } } public long TotalFreeSpace { get { throw null; } } public long TotalSize { get { throw null; } } [System.MonoTODOAttribute("Currently get only works on Mono/Unix; set not implemented")] public string VolumeLabel { get { throw null; } set { } } [System.MonoTODOAttribute("In windows, alldrives are 'Fixed'")] public static System.IO.DriveInfo[] GetDrives() { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class DriveNotFoundException : System.IO.IOException { public DriveNotFoundException() { } protected DriveNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public DriveNotFoundException(string message) { } public DriveNotFoundException(string message, System.Exception innerException) { } } public enum DriveType { CDRom = 5, Fixed = 3, Network = 4, NoRootDirectory = 1, Ram = 6, Removable = 2, Unknown = 0, } [System.SerializableAttribute] public partial class EndOfStreamException : System.IO.IOException { public EndOfStreamException() { } protected EndOfStreamException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public EndOfStreamException(string message) { } public EndOfStreamException(string message, System.Exception innerException) { } } public partial class EnumerationOptions { public EnumerationOptions() { } public System.IO.FileAttributes AttributesToSkip { get { throw null; } set { } } public int BufferSize { get { throw null; } set { } } public bool IgnoreInaccessible { get { throw null; } set { } } public System.IO.MatchCasing MatchCasing { get { throw null; } set { } } public System.IO.MatchType MatchType { get { throw null; } set { } } public bool RecurseSubdirectories { get { throw null; } set { } } public bool ReturnSpecialDirectories { get { throw null; } set { } } } public static partial class File { public static void AppendAllLines(string path, System.Collections.Generic.IEnumerable contents) { } public static void AppendAllLines(string path, System.Collections.Generic.IEnumerable contents, System.Text.Encoding encoding) { } public static System.Threading.Tasks.Task AppendAllLinesAsync(string path, System.Collections.Generic.IEnumerable contents, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Threading.Tasks.Task AppendAllLinesAsync(string path, System.Collections.Generic.IEnumerable contents, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static void AppendAllText(string path, string contents) { } public static void AppendAllText(string path, string contents, System.Text.Encoding encoding) { } public static System.Threading.Tasks.Task AppendAllTextAsync(string path, string contents, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Threading.Tasks.Task AppendAllTextAsync(string path, string contents, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.IO.StreamWriter AppendText(string path) { throw null; } public static void Copy(string sourceFileName, string destFileName) { } public static void Copy(string sourceFileName, string destFileName, bool overwrite) { } public static System.IO.FileStream Create(string path) { throw null; } public static System.IO.FileStream Create(string path, int bufferSize) { throw null; } public static System.IO.FileStream Create(string path, int bufferSize, System.IO.FileOptions options) { throw null; } public static System.IO.StreamWriter CreateText(string path) { throw null; } public static void Decrypt(string path) { } public static void Delete(string path) { } public static void Encrypt(string path) { } public static bool Exists(string path) { throw null; } public static System.Security.AccessControl.FileSecurity GetAccessControl(string path) { throw null; } public static System.Security.AccessControl.FileSecurity GetAccessControl(string path, System.Security.AccessControl.AccessControlSections includeSections) { throw null; } public static System.IO.FileAttributes GetAttributes(string path) { throw null; } public static System.DateTime GetCreationTime(string path) { throw null; } public static System.DateTime GetCreationTimeUtc(string path) { throw null; } public static System.DateTime GetLastAccessTime(string path) { throw null; } public static System.DateTime GetLastAccessTimeUtc(string path) { throw null; } public static System.DateTime GetLastWriteTime(string path) { throw null; } public static System.DateTime GetLastWriteTimeUtc(string path) { throw null; } public static void Move(string sourceFileName, string destFileName) { } public static System.IO.FileStream Open(string path, System.IO.FileMode mode) { throw null; } public static System.IO.FileStream Open(string path, System.IO.FileMode mode, System.IO.FileAccess access) { throw null; } public static System.IO.FileStream Open(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share) { throw null; } public static System.IO.FileStream OpenRead(string path) { throw null; } public static System.IO.StreamReader OpenText(string path) { throw null; } public static System.IO.FileStream OpenWrite(string path) { throw null; } public static byte[] ReadAllBytes(string path) { throw null; } public static System.Threading.Tasks.Task ReadAllBytesAsync(string path, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static string[] ReadAllLines(string path) { throw null; } public static string[] ReadAllLines(string path, System.Text.Encoding encoding) { throw null; } public static System.Threading.Tasks.Task ReadAllLinesAsync(string path, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Threading.Tasks.Task ReadAllLinesAsync(string path, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static string ReadAllText(string path) { throw null; } public static string ReadAllText(string path, System.Text.Encoding encoding) { throw null; } public static System.Threading.Tasks.Task ReadAllTextAsync(string path, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Threading.Tasks.Task ReadAllTextAsync(string path, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Collections.Generic.IEnumerable ReadLines(string path) { throw null; } public static System.Collections.Generic.IEnumerable ReadLines(string path, System.Text.Encoding encoding) { throw null; } public static void Replace(string sourceFileName, string destinationFileName, string destinationBackupFileName) { } public static void Replace(string sourceFileName, string destinationFileName, string destinationBackupFileName, bool ignoreMetadataErrors) { } public static void SetAccessControl(string path, System.Security.AccessControl.FileSecurity fileSecurity) { } public static void SetAttributes(string path, System.IO.FileAttributes fileAttributes) { } public static void SetCreationTime(string path, System.DateTime creationTime) { } public static void SetCreationTimeUtc(string path, System.DateTime creationTimeUtc) { } public static void SetLastAccessTime(string path, System.DateTime lastAccessTime) { } public static void SetLastAccessTimeUtc(string path, System.DateTime lastAccessTimeUtc) { } public static void SetLastWriteTime(string path, System.DateTime lastWriteTime) { } public static void SetLastWriteTimeUtc(string path, System.DateTime lastWriteTimeUtc) { } public static void WriteAllBytes(string path, byte[] bytes) { } public static System.Threading.Tasks.Task WriteAllBytesAsync(string path, byte[] bytes, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static void WriteAllLines(string path, System.Collections.Generic.IEnumerable contents) { } public static void WriteAllLines(string path, System.Collections.Generic.IEnumerable contents, System.Text.Encoding encoding) { } public static void WriteAllLines(string path, string[] contents) { } public static void WriteAllLines(string path, string[] contents, System.Text.Encoding encoding) { } public static System.Threading.Tasks.Task WriteAllLinesAsync(string path, System.Collections.Generic.IEnumerable contents, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Threading.Tasks.Task WriteAllLinesAsync(string path, System.Collections.Generic.IEnumerable contents, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static void WriteAllText(string path, string contents) { } public static void WriteAllText(string path, string contents, System.Text.Encoding encoding) { } public static System.Threading.Tasks.Task WriteAllTextAsync(string path, string contents, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Threading.Tasks.Task WriteAllTextAsync(string path, string contents, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.FlagsAttribute] public enum FileAccess { Read = 1, ReadWrite = 3, Write = 2, } [System.FlagsAttribute] public enum FileAttributes { Archive = 32, Compressed = 2048, Device = 64, Directory = 16, Encrypted = 16384, Hidden = 2, IntegrityStream = 32768, Normal = 128, NoScrubData = 131072, NotContentIndexed = 8192, Offline = 4096, ReadOnly = 1, ReparsePoint = 1024, SparseFile = 512, System = 4, Temporary = 256, } [System.SerializableAttribute] public sealed partial class FileInfo : System.IO.FileSystemInfo { public FileInfo(string fileName) { } public System.IO.DirectoryInfo Directory { get { throw null; } } public string DirectoryName { get { throw null; } } public bool IsReadOnly { get { throw null; } set { } } public long Length { get { throw null; } } public override string Name { get { throw null; } } public System.IO.StreamWriter AppendText() { throw null; } public System.IO.FileInfo CopyTo(string destFileName) { throw null; } public System.IO.FileInfo CopyTo(string destFileName, bool overwrite) { throw null; } public System.IO.FileStream Create() { throw null; } public System.IO.StreamWriter CreateText() { throw null; } public void Decrypt() { } public override void Delete() { } public void Encrypt() { } public System.Security.AccessControl.FileSecurity GetAccessControl() { throw null; } public System.Security.AccessControl.FileSecurity GetAccessControl(System.Security.AccessControl.AccessControlSections includeSections) { throw null; } public void MoveTo(string destFileName) { } public System.IO.FileStream Open(System.IO.FileMode mode) { throw null; } public System.IO.FileStream Open(System.IO.FileMode mode, System.IO.FileAccess access) { throw null; } public System.IO.FileStream Open(System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share) { throw null; } public System.IO.FileStream OpenRead() { throw null; } public System.IO.StreamReader OpenText() { throw null; } public System.IO.FileStream OpenWrite() { throw null; } public System.IO.FileInfo Replace(string destinationFileName, string destinationBackupFileName) { throw null; } public System.IO.FileInfo Replace(string destinationFileName, string destinationBackupFileName, bool ignoreMetadataErrors) { throw null; } public void SetAccessControl(System.Security.AccessControl.FileSecurity fileSecurity) { } } [System.SerializableAttribute] public partial class FileLoadException : System.IO.IOException { public FileLoadException() { } protected FileLoadException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public FileLoadException(string message) { } public FileLoadException(string message, System.Exception inner) { } public FileLoadException(string message, string fileName) { } public FileLoadException(string message, string fileName, System.Exception inner) { } public string FileName { get { throw null; } } public string FusionLog { get { throw null; } } public override string Message { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } public enum FileMode { Append = 6, Create = 2, CreateNew = 1, Open = 3, OpenOrCreate = 4, Truncate = 5, } [System.SerializableAttribute] public partial class FileNotFoundException : System.IO.IOException { public FileNotFoundException() { } protected FileNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public FileNotFoundException(string message) { } public FileNotFoundException(string message, System.Exception innerException) { } public FileNotFoundException(string message, string fileName) { } public FileNotFoundException(string message, string fileName, System.Exception innerException) { } public string FileName { get { throw null; } } public string FusionLog { get { throw null; } } public override string Message { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } [System.FlagsAttribute] public enum FileOptions { Asynchronous = 1073741824, DeleteOnClose = 67108864, Encrypted = 16384, None = 0, RandomAccess = 268435456, SequentialScan = 134217728, WriteThrough = -2147483648, } [System.FlagsAttribute] public enum FileShare { Delete = 4, Inheritable = 16, None = 0, Read = 1, ReadWrite = 3, Write = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class FileStream : System.IO.Stream { public FileStream(Microsoft.Win32.SafeHandles.SafeFileHandle handle, System.IO.FileAccess access) { } public FileStream(Microsoft.Win32.SafeHandles.SafeFileHandle handle, System.IO.FileAccess access, int bufferSize) { } public FileStream(Microsoft.Win32.SafeHandles.SafeFileHandle handle, System.IO.FileAccess access, int bufferSize, bool isAsync) { } [System.ObsoleteAttribute("Use FileStream(SafeFileHandle handle, FileAccess access) instead")] public FileStream(System.IntPtr handle, System.IO.FileAccess access) { } [System.ObsoleteAttribute("Use FileStream(SafeFileHandle handle, FileAccess access) instead")] public FileStream(System.IntPtr handle, System.IO.FileAccess access, bool ownsHandle) { } [System.ObsoleteAttribute("Use FileStream(SafeFileHandle handle, FileAccess access, int bufferSize) instead")] public FileStream(System.IntPtr handle, System.IO.FileAccess access, bool ownsHandle, int bufferSize) { } [System.ObsoleteAttribute("Use FileStream(SafeFileHandle handle, FileAccess access, int bufferSize, bool isAsync) instead")] public FileStream(System.IntPtr handle, System.IO.FileAccess access, bool ownsHandle, int bufferSize, bool isAsync) { } public FileStream(string path, System.IO.FileMode mode) { } public FileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access) { } public FileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share) { } public FileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize) { } public FileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize, bool useAsync) { } public FileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize, System.IO.FileOptions options) { } [System.MonoLimitationAttribute("This ignores the rights parameter")] public FileStream(string path, System.IO.FileMode mode, System.Security.AccessControl.FileSystemRights rights, System.IO.FileShare share, int bufferSize, System.IO.FileOptions options) { } [System.MonoLimitationAttribute("This ignores the rights and fileSecurity parameters")] public FileStream(string path, System.IO.FileMode mode, System.Security.AccessControl.FileSystemRights rights, System.IO.FileShare share, int bufferSize, System.IO.FileOptions options, System.Security.AccessControl.FileSecurity fileSecurity) { } public override bool CanRead { get { throw null; } } public override bool CanSeek { get { throw null; } } public override bool CanWrite { get { throw null; } } [System.ObsoleteAttribute("Use SafeFileHandle instead")] public virtual System.IntPtr Handle { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, UnmanagedCode=true), System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]get { throw null; } } public virtual bool IsAsync { get { throw null; } } public override long Length { get { throw null; } } public virtual string Name { get { throw null; } } public override long Position { get { throw null; } set { } } public virtual Microsoft.Win32.SafeHandles.SafeFileHandle SafeFileHandle { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, UnmanagedCode=true), System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]get { throw null; } } public override System.IAsyncResult BeginRead(byte[] array, int offset, int numBytes, System.AsyncCallback userCallback, object stateObject) { throw null; } public override System.IAsyncResult BeginWrite(byte[] array, int offset, int numBytes, System.AsyncCallback userCallback, object stateObject) { throw null; } protected override void Dispose(bool disposing) { } public override int EndRead(System.IAsyncResult asyncResult) { throw null; } public override void EndWrite(System.IAsyncResult asyncResult) { } ~FileStream() { } public override void Flush() { } public virtual void Flush(bool flushToDisk) { } public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; } public System.Security.AccessControl.FileSecurity GetAccessControl() { throw null; } public virtual void Lock(long position, long length) { } public override int Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]byte[] array, int offset, int count) { throw null; } public override System.Threading.Tasks.Task ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override int ReadByte() { throw null; } public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; } public void SetAccessControl(System.Security.AccessControl.FileSecurity fileSecurity) { } public override void SetLength(long value) { } public virtual void Unlock(long position, long length) { } public override void Write(byte[] array, int offset, int count) { } public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override void WriteByte(byte value) { } } [System.SerializableAttribute] public abstract partial class FileSystemInfo : System.MarshalByRefObject, System.Runtime.Serialization.ISerializable { protected string FullPath; protected string OriginalPath; protected FileSystemInfo() { } protected FileSystemInfo(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public System.IO.FileAttributes Attributes { get { throw null; } set { } } public System.DateTime CreationTime { get { throw null; } set { } } public System.DateTime CreationTimeUtc { get { throw null; } set { } } public virtual bool Exists { get { throw null; } } public string Extension { get { throw null; } } public virtual string FullName { get { throw null; } } public System.DateTime LastAccessTime { get { throw null; } set { } } public System.DateTime LastAccessTimeUtc { get { throw null; } set { } } public System.DateTime LastWriteTime { get { throw null; } set { } } public System.DateTime LastWriteTimeUtc { get { throw null; } set { } } public virtual string Name { get { throw null; } } public abstract void Delete(); public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public void Refresh() { } public override string ToString() { throw null; } } [System.SerializableAttribute] public partial class IOException : System.SystemException { public IOException() { } protected IOException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public IOException(string message) { } public IOException(string message, System.Exception innerException) { } public IOException(string message, int hresult) { } } public enum MatchCasing { CaseInsensitive = 2, CaseSensitive = 1, PlatformDefault = 0, } public enum MatchType { Simple = 0, Win32 = 1, } [System.SerializableAttribute] public partial class MemoryStream : System.IO.Stream { public MemoryStream() { } public MemoryStream(byte[] buffer) { } public MemoryStream(byte[] buffer, bool writable) { } public MemoryStream(byte[] buffer, int index, int count) { } public MemoryStream(byte[] buffer, int index, int count, bool writable) { } public MemoryStream(byte[] buffer, int index, int count, bool writable, bool publiclyVisible) { } public MemoryStream(int capacity) { } public override bool CanRead { get { throw null; } } public override bool CanSeek { get { throw null; } } public override bool CanWrite { get { throw null; } } public virtual int Capacity { get { throw null; } set { } } public override long Length { get { throw null; } } public override long Position { get { throw null; } set { } } public override void CopyTo(System.IO.Stream destination, int bufferSize) { } public override System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken) { throw null; } protected override void Dispose(bool disposing) { } public override void Flush() { } public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; } public virtual byte[] GetBuffer() { throw null; } public override int Read(byte[] buffer, int offset, int count) { throw null; } public override int Read(System.Span buffer) { throw null; } public override System.Threading.Tasks.Task ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override int ReadByte() { throw null; } public override long Seek(long offset, System.IO.SeekOrigin loc) { throw null; } public override void SetLength(long value) { } public virtual byte[] ToArray() { throw null; } public virtual bool TryGetBuffer(out System.ArraySegment buffer) { throw null; } public override void Write(byte[] buffer, int offset, int count) { } public override void Write(System.ReadOnlySpan buffer) { } public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override void WriteByte(byte value) { } public virtual void WriteTo(System.IO.Stream stream) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class Path { public static readonly char AltDirectorySeparatorChar; public static readonly char DirectorySeparatorChar; [System.ObsoleteAttribute("see GetInvalidPathChars and GetInvalidFileNameChars methods.")] public static readonly char[] InvalidPathChars; public static readonly char PathSeparator; public static readonly char VolumeSeparatorChar; public static string ChangeExtension(string path, string extension) { throw null; } public static string Combine(string path1, string path2) { throw null; } public static string Combine(string path1, string path2, string path3) { throw null; } public static string Combine(string path1, string path2, string path3, string path4) { throw null; } public static string Combine(params string[] paths) { throw null; } public static System.ReadOnlySpan GetDirectoryName(System.ReadOnlySpan path) { throw null; } public static string GetDirectoryName(string path) { throw null; } public static System.ReadOnlySpan GetExtension(System.ReadOnlySpan path) { throw null; } public static string GetExtension(string path) { throw null; } public static System.ReadOnlySpan GetFileName(System.ReadOnlySpan path) { throw null; } public static string GetFileName(string path) { throw null; } public static System.ReadOnlySpan GetFileNameWithoutExtension(System.ReadOnlySpan path) { throw null; } public static string GetFileNameWithoutExtension(string path) { throw null; } public static string GetFullPath(string path) { throw null; } public static string GetFullPath(string path, string basePath) { throw null; } public static char[] GetInvalidFileNameChars() { throw null; } public static char[] GetInvalidPathChars() { throw null; } public static System.ReadOnlySpan GetPathRoot(System.ReadOnlySpan path) { throw null; } public static string GetPathRoot(string path) { throw null; } public static string GetRandomFileName() { throw null; } public static string GetRelativePath(string relativeTo, string path) { throw null; } [System.Security.Permissions.FileIOPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] public static string GetTempFileName() { throw null; } [System.Security.Permissions.EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Unrestricted=true)] public static string GetTempPath() { throw null; } public static bool HasExtension(System.ReadOnlySpan path) { throw null; } public static bool HasExtension(string path) { throw null; } public static bool IsPathFullyQualified(System.ReadOnlySpan path) { throw null; } public static bool IsPathFullyQualified(string path) { throw null; } public static bool IsPathRooted(System.ReadOnlySpan path) { throw null; } public static bool IsPathRooted(string path) { throw null; } public static string Join(System.ReadOnlySpan path1, System.ReadOnlySpan path2) { throw null; } public static string Join(System.ReadOnlySpan path1, System.ReadOnlySpan path2, System.ReadOnlySpan path3) { throw null; } public static bool TryJoin(System.ReadOnlySpan path1, System.ReadOnlySpan path2, System.ReadOnlySpan path3, System.Span destination, out int charsWritten) { throw null; } public static bool TryJoin(System.ReadOnlySpan path1, System.ReadOnlySpan path2, System.Span destination, out int charsWritten) { throw null; } } [System.SerializableAttribute] public partial class PathTooLongException : System.IO.IOException { public PathTooLongException() { } protected PathTooLongException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public PathTooLongException(string message) { } public PathTooLongException(string message, System.Exception innerException) { } } public enum SearchOption { AllDirectories = 1, TopDirectoryOnly = 0, } public enum SeekOrigin { Begin = 0, Current = 1, End = 2, } [System.SerializableAttribute] public abstract partial class Stream : System.MarshalByRefObject, System.IDisposable { public static readonly System.IO.Stream Null; protected Stream() { } public abstract bool CanRead { get; } public abstract bool CanSeek { get; } public virtual bool CanTimeout { get { throw null; } } public abstract bool CanWrite { get; } public abstract long Length { get; } public abstract long Position { get; set; } public virtual int ReadTimeout { get { throw null; } set { } } public virtual int WriteTimeout { get { throw null; } set { } } public virtual System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; } public virtual System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; } public virtual void Close() { } public void CopyTo(System.IO.Stream destination) { } public virtual void CopyTo(System.IO.Stream destination, int bufferSize) { } public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination) { throw null; } public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination, int bufferSize) { throw null; } public virtual System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination, int bufferSize, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream destination, System.Threading.CancellationToken cancellationToken) { throw null; } [System.ObsoleteAttribute("CreateWaitHandle will be removed eventually. Please use \"new ManualResetEvent(false)\" instead.")] protected virtual System.Threading.WaitHandle CreateWaitHandle() { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public virtual System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } public virtual int EndRead(System.IAsyncResult asyncResult) { throw null; } public virtual void EndWrite(System.IAsyncResult asyncResult) { } public abstract void Flush(); public System.Threading.Tasks.Task FlushAsync() { throw null; } public virtual System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; } [System.ObsoleteAttribute("Do not call or override this method.")] protected virtual void ObjectInvariant() { } public abstract int Read(byte[] buffer, int offset, int count); public virtual int Read(System.Span buffer) { throw null; } public System.Threading.Tasks.Task ReadAsync(byte[] buffer, int offset, int count) { throw null; } public virtual System.Threading.Tasks.Task ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public virtual System.Threading.Tasks.ValueTask ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual int ReadByte() { throw null; } public abstract long Seek(long offset, System.IO.SeekOrigin origin); public abstract void SetLength(long value); public static System.IO.Stream Synchronized(System.IO.Stream stream) { throw null; } public abstract void Write(byte[] buffer, int offset, int count); public virtual void Write(System.ReadOnlySpan buffer) { } public System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count) { throw null; } public virtual System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public virtual System.Threading.Tasks.ValueTask WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual void WriteByte(byte value) { } } [System.SerializableAttribute] public partial class StreamReader : System.IO.TextReader { public static readonly new System.IO.StreamReader Null; public StreamReader(System.IO.Stream stream) { } public StreamReader(System.IO.Stream stream, bool detectEncodingFromByteOrderMarks) { } public StreamReader(System.IO.Stream stream, System.Text.Encoding encoding) { } public StreamReader(System.IO.Stream stream, System.Text.Encoding encoding, bool detectEncodingFromByteOrderMarks) { } public StreamReader(System.IO.Stream stream, System.Text.Encoding encoding, bool detectEncodingFromByteOrderMarks, int bufferSize) { } public StreamReader(System.IO.Stream stream, System.Text.Encoding encoding, bool detectEncodingFromByteOrderMarks, int bufferSize, bool leaveOpen) { } public StreamReader(string path) { } public StreamReader(string path, bool detectEncodingFromByteOrderMarks) { } public StreamReader(string path, System.Text.Encoding encoding) { } public StreamReader(string path, System.Text.Encoding encoding, bool detectEncodingFromByteOrderMarks) { } public StreamReader(string path, System.Text.Encoding encoding, bool detectEncodingFromByteOrderMarks, int bufferSize) { } public virtual System.IO.Stream BaseStream { get { throw null; } } public virtual System.Text.Encoding CurrentEncoding { get { throw null; } } public bool EndOfStream { get { throw null; } } public override void Close() { } public void DiscardBufferedData() { } protected override void Dispose(bool disposing) { } public override int Peek() { throw null; } public override int Read() { throw null; } public override int Read(char[] buffer, int index, int count) { throw null; } public override int Read(System.Span buffer) { throw null; } public override System.Threading.Tasks.Task ReadAsync(char[] buffer, int index, int count) { throw null; } public override System.Threading.Tasks.ValueTask ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override int ReadBlock(char[] buffer, int index, int count) { throw null; } public override int ReadBlock(System.Span buffer) { throw null; } public override System.Threading.Tasks.Task ReadBlockAsync(char[] buffer, int index, int count) { throw null; } public override System.Threading.Tasks.ValueTask ReadBlockAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override string ReadLine() { throw null; } public override System.Threading.Tasks.Task ReadLineAsync() { throw null; } public override string ReadToEnd() { throw null; } public override System.Threading.Tasks.Task ReadToEndAsync() { throw null; } } [System.SerializableAttribute] public partial class StreamWriter : System.IO.TextWriter { public static readonly new System.IO.StreamWriter Null; public StreamWriter(System.IO.Stream stream) { } public StreamWriter(System.IO.Stream stream, System.Text.Encoding encoding) { } public StreamWriter(System.IO.Stream stream, System.Text.Encoding encoding, int bufferSize) { } public StreamWriter(System.IO.Stream stream, System.Text.Encoding encoding, int bufferSize, bool leaveOpen) { } public StreamWriter(string path) { } public StreamWriter(string path, bool append) { } public StreamWriter(string path, bool append, System.Text.Encoding encoding) { } public StreamWriter(string path, bool append, System.Text.Encoding encoding, int bufferSize) { } public virtual bool AutoFlush { get { throw null; } set { } } public virtual System.IO.Stream BaseStream { get { throw null; } } public override System.Text.Encoding Encoding { get { throw null; } } public override void Close() { } protected override void Dispose(bool disposing) { } public override System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } public override void Flush() { } public override System.Threading.Tasks.Task FlushAsync() { throw null; } public override void Write(char value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override void Write(char[] buffer) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override void Write(char[] buffer, int index, int count) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override void Write(System.ReadOnlySpan buffer) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override void Write(string value) { } public override System.Threading.Tasks.Task WriteAsync(char value) { throw null; } public override System.Threading.Tasks.Task WriteAsync(char[] buffer, int index, int count) { throw null; } public override System.Threading.Tasks.Task WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.Task WriteAsync(string value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override void WriteLine(System.ReadOnlySpan value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override void WriteLine(string value) { } public override System.Threading.Tasks.Task WriteLineAsync() { throw null; } public override System.Threading.Tasks.Task WriteLineAsync(char value) { throw null; } public override System.Threading.Tasks.Task WriteLineAsync(char[] buffer, int index, int count) { throw null; } public override System.Threading.Tasks.Task WriteLineAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.Task WriteLineAsync(string value) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class StringReader : System.IO.TextReader { public StringReader(string s) { } public override void Close() { } protected override void Dispose(bool disposing) { } public override int Peek() { throw null; } public override int Read() { throw null; } public override int Read([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]char[] buffer, int index, int count) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Threading.Tasks.Task ReadAsync(char[] buffer, int index, int count) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Threading.Tasks.Task ReadBlockAsync(char[] buffer, int index, int count) { throw null; } public override string ReadLine() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Threading.Tasks.Task ReadLineAsync() { throw null; } public override string ReadToEnd() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Threading.Tasks.Task ReadToEndAsync() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class StringWriter : System.IO.TextWriter { public StringWriter() { } public StringWriter(System.IFormatProvider formatProvider) { } public StringWriter(System.Text.StringBuilder sb) { } public StringWriter(System.Text.StringBuilder sb, System.IFormatProvider formatProvider) { } public override System.Text.Encoding Encoding { get { throw null; } } public override void Close() { } protected override void Dispose(bool disposing) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)] public override System.Threading.Tasks.Task FlushAsync() { throw null; } public virtual System.Text.StringBuilder GetStringBuilder() { throw null; } public override string ToString() { throw null; } public override void Write(char value) { } public override void Write(char[] buffer, int index, int count) { } public override void Write(string value) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)] public override System.Threading.Tasks.Task WriteAsync(char value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)] public override System.Threading.Tasks.Task WriteAsync(char[] buffer, int index, int count) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)] public override System.Threading.Tasks.Task WriteAsync(string value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)] public override System.Threading.Tasks.Task WriteLineAsync(char value) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)] public override System.Threading.Tasks.Task WriteLineAsync(char[] buffer, int index, int count) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, ExternalThreading=true)] public override System.Threading.Tasks.Task WriteLineAsync(string value) { throw null; } } [System.SerializableAttribute] public abstract partial class TextReader : System.MarshalByRefObject, System.IDisposable { public static readonly System.IO.TextReader Null; protected TextReader() { } public virtual void Close() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public virtual int Peek() { throw null; } public virtual int Read() { throw null; } public virtual int Read(char[] buffer, int index, int count) { throw null; } public virtual int Read(System.Span buffer) { throw null; } public virtual System.Threading.Tasks.Task ReadAsync(char[] buffer, int index, int count) { throw null; } public virtual System.Threading.Tasks.ValueTask ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual int ReadBlock(char[] buffer, int index, int count) { throw null; } public virtual int ReadBlock(System.Span buffer) { throw null; } public virtual System.Threading.Tasks.Task ReadBlockAsync(char[] buffer, int index, int count) { throw null; } public virtual System.Threading.Tasks.ValueTask ReadBlockAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual string ReadLine() { throw null; } public virtual System.Threading.Tasks.Task ReadLineAsync() { throw null; } public virtual string ReadToEnd() { throw null; } public virtual System.Threading.Tasks.Task ReadToEndAsync() { throw null; } public static System.IO.TextReader Synchronized(System.IO.TextReader reader) { throw null; } } [System.SerializableAttribute] public abstract partial class TextWriter : System.MarshalByRefObject, System.IDisposable { protected char[] CoreNewLine; public static readonly System.IO.TextWriter Null; protected TextWriter() { } protected TextWriter(System.IFormatProvider formatProvider) { } public abstract System.Text.Encoding Encoding { get; } public virtual System.IFormatProvider FormatProvider { get { throw null; } } public virtual string NewLine { get { throw null; } set { } } public virtual void Close() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public virtual System.Threading.Tasks.ValueTask DisposeAsync() { throw null; } public virtual void Flush() { } public virtual System.Threading.Tasks.Task FlushAsync() { throw null; } public static System.IO.TextWriter Synchronized(System.IO.TextWriter writer) { throw null; } public virtual void Write(bool value) { } public virtual void Write(char value) { } public virtual void Write(char[] buffer) { } public virtual void Write(char[] buffer, int index, int count) { } public virtual void Write(decimal value) { } public virtual void Write(double value) { } public virtual void Write(int value) { } public virtual void Write(long value) { } public virtual void Write(object value) { } public virtual void Write(System.ReadOnlySpan buffer) { } public virtual void Write(float value) { } public virtual void Write(string value) { } public virtual void Write(string format, object arg0) { } public virtual void Write(string format, object arg0, object arg1) { } public virtual void Write(string format, object arg0, object arg1, object arg2) { } public virtual void Write(string format, params object[] arg) { } [System.CLSCompliantAttribute(false)] public virtual void Write(uint value) { } [System.CLSCompliantAttribute(false)] public virtual void Write(ulong value) { } public virtual System.Threading.Tasks.Task WriteAsync(char value) { throw null; } public System.Threading.Tasks.Task WriteAsync(char[] buffer) { throw null; } public virtual System.Threading.Tasks.Task WriteAsync(char[] buffer, int index, int count) { throw null; } public virtual System.Threading.Tasks.Task WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task WriteAsync(string value) { throw null; } public virtual void WriteLine() { } public virtual void WriteLine(bool value) { } public virtual void WriteLine(char value) { } public virtual void WriteLine(char[] buffer) { } public virtual void WriteLine(char[] buffer, int index, int count) { } public virtual void WriteLine(decimal value) { } public virtual void WriteLine(double value) { } public virtual void WriteLine(int value) { } public virtual void WriteLine(long value) { } public virtual void WriteLine(object value) { } public virtual void WriteLine(System.ReadOnlySpan buffer) { } public virtual void WriteLine(float value) { } public virtual void WriteLine(string value) { } public virtual void WriteLine(string format, object arg0) { } public virtual void WriteLine(string format, object arg0, object arg1) { } public virtual void WriteLine(string format, object arg0, object arg1, object arg2) { } public virtual void WriteLine(string format, params object[] arg) { } [System.CLSCompliantAttribute(false)] public virtual void WriteLine(uint value) { } [System.CLSCompliantAttribute(false)] public virtual void WriteLine(ulong value) { } public virtual System.Threading.Tasks.Task WriteLineAsync() { throw null; } public virtual System.Threading.Tasks.Task WriteLineAsync(char value) { throw null; } public System.Threading.Tasks.Task WriteLineAsync(char[] buffer) { throw null; } public virtual System.Threading.Tasks.Task WriteLineAsync(char[] buffer, int index, int count) { throw null; } public virtual System.Threading.Tasks.Task WriteLineAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task WriteLineAsync(string value) { throw null; } } public partial class UnmanagedMemoryAccessor : System.IDisposable { protected UnmanagedMemoryAccessor() { } public UnmanagedMemoryAccessor(System.Runtime.InteropServices.SafeBuffer buffer, long offset, long capacity) { } public UnmanagedMemoryAccessor(System.Runtime.InteropServices.SafeBuffer buffer, long offset, long capacity, System.IO.FileAccess access) { } public bool CanRead { get { throw null; } } public bool CanWrite { get { throw null; } } public long Capacity { get { throw null; } } protected bool IsOpen { get { throw null; } } public void Dispose() { } protected virtual void Dispose(bool disposing) { } protected void Initialize(System.Runtime.InteropServices.SafeBuffer buffer, long offset, long capacity, System.IO.FileAccess access) { } public int ReadArray(long position, T[] array, int offset, int count) where T : struct { throw null; } public bool ReadBoolean(long position) { throw null; } public byte ReadByte(long position) { throw null; } public char ReadChar(long position) { throw null; } public decimal ReadDecimal(long position) { throw null; } public double ReadDouble(long position) { throw null; } public short ReadInt16(long position) { throw null; } public int ReadInt32(long position) { throw null; } public long ReadInt64(long position) { throw null; } [System.CLSCompliantAttribute(false)] public sbyte ReadSByte(long position) { throw null; } public float ReadSingle(long position) { throw null; } [System.CLSCompliantAttribute(false)] public ushort ReadUInt16(long position) { throw null; } [System.CLSCompliantAttribute(false)] public uint ReadUInt32(long position) { throw null; } [System.CLSCompliantAttribute(false)] public ulong ReadUInt64(long position) { throw null; } public void Read(long position, out T structure) where T : struct { throw null; } public void Write(long position, bool value) { } public void Write(long position, byte value) { } public void Write(long position, char value) { } public void Write(long position, decimal value) { } public void Write(long position, double value) { } public void Write(long position, short value) { } public void Write(long position, int value) { } public void Write(long position, long value) { } [System.CLSCompliantAttribute(false)] public void Write(long position, sbyte value) { } public void Write(long position, float value) { } [System.CLSCompliantAttribute(false)] public void Write(long position, ushort value) { } [System.CLSCompliantAttribute(false)] public void Write(long position, uint value) { } [System.CLSCompliantAttribute(false)] public void Write(long position, ulong value) { } public void WriteArray(long position, T[] array, int offset, int count) where T : struct { } public void Write(long position, ref T structure) where T : struct { } } public partial class UnmanagedMemoryStream : System.IO.Stream { protected UnmanagedMemoryStream() { } [System.CLSCompliantAttribute(false)] public unsafe UnmanagedMemoryStream(byte* pointer, long length) { } [System.CLSCompliantAttribute(false)] public unsafe UnmanagedMemoryStream(byte* pointer, long length, long capacity, System.IO.FileAccess access) { } public UnmanagedMemoryStream(System.Runtime.InteropServices.SafeBuffer buffer, long offset, long length) { } public UnmanagedMemoryStream(System.Runtime.InteropServices.SafeBuffer buffer, long offset, long length, System.IO.FileAccess access) { } public override bool CanRead { get { throw null; } } public override bool CanSeek { get { throw null; } } public override bool CanWrite { get { throw null; } } public long Capacity { get { throw null; } } public override long Length { get { throw null; } } public override long Position { get { throw null; } set { } } [System.CLSCompliantAttribute(false)] public unsafe byte* PositionPointer { get { throw null; } set { } } protected override void Dispose(bool disposing) { } public override void Flush() { } public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; } [System.CLSCompliantAttribute(false)] protected unsafe void Initialize(byte* pointer, long length, long capacity, System.IO.FileAccess access) { } protected void Initialize(System.Runtime.InteropServices.SafeBuffer buffer, long offset, long length, System.IO.FileAccess access) { } public override int Read(byte[] buffer, int offset, int count) { throw null; } public override int Read(System.Span buffer) { throw null; } public override System.Threading.Tasks.Task ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override int ReadByte() { throw null; } public override long Seek(long offset, System.IO.SeekOrigin loc) { throw null; } public override void SetLength(long value) { } public override void Write(byte[] buffer, int offset, int count) { } public override void Write(System.ReadOnlySpan buffer) { } public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override void WriteByte(byte value) { } } } namespace System.IO.Enumeration { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public ref partial struct FileSystemEntry { private int _dummyPrimitive; public System.IO.FileAttributes Attributes { get { throw null; } } public System.DateTimeOffset CreationTimeUtc { get { throw null; } } public System.ReadOnlySpan Directory { get { throw null; } } public System.ReadOnlySpan FileName { get { throw null; } } public bool IsDirectory { get { throw null; } } public bool IsHidden { get { throw null; } } public System.DateTimeOffset LastAccessTimeUtc { get { throw null; } } public System.DateTimeOffset LastWriteTimeUtc { get { throw null; } } public long Length { get { throw null; } } public System.ReadOnlySpan OriginalRootDirectory { get { throw null; } } public System.ReadOnlySpan RootDirectory { get { throw null; } } public System.IO.FileSystemInfo ToFileSystemInfo() { throw null; } public string ToFullPath() { throw null; } public string ToSpecifiedFullPath() { throw null; } [System.Runtime.CompilerServices.UnsafeValueTypeAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Size=512)] public partial struct <_fileNameBuffer>e__FixedBuffer { public char FixedElementField; } } public partial class FileSystemEnumerable : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { public FileSystemEnumerable(string directory, System.IO.Enumeration.FileSystemEnumerable.FindTransform transform, System.IO.EnumerationOptions options = null) { } public System.IO.Enumeration.FileSystemEnumerable.FindPredicate ShouldIncludePredicate { get { throw null; } set { } } public System.IO.Enumeration.FileSystemEnumerable.FindPredicate ShouldRecursePredicate { get { throw null; } set { } } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public delegate bool FindPredicate(ref System.IO.Enumeration.FileSystemEntry entry); public delegate TResult FindTransform(ref System.IO.Enumeration.FileSystemEntry entry); } public abstract partial class FileSystemEnumerator : System.Runtime.ConstrainedExecution.CriticalFinalizerObject, System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { public FileSystemEnumerator(string directory, System.IO.EnumerationOptions options = null) { } public TResult Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } protected virtual bool ContinueOnError(int error) { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } ~FileSystemEnumerator() { } public bool MoveNext() { throw null; } protected virtual void OnDirectoryFinished(System.ReadOnlySpan directory) { } public void Reset() { } protected virtual bool ShouldIncludeEntry(ref System.IO.Enumeration.FileSystemEntry entry) { throw null; } protected virtual bool ShouldRecurseIntoEntry(ref System.IO.Enumeration.FileSystemEntry entry) { throw null; } protected abstract TResult TransformEntry(ref System.IO.Enumeration.FileSystemEntry entry); } public static partial class FileSystemName { public static bool MatchesSimpleExpression(System.ReadOnlySpan expression, System.ReadOnlySpan name, bool ignoreCase = true) { throw null; } public static bool MatchesWin32Expression(System.ReadOnlySpan expression, System.ReadOnlySpan name, bool ignoreCase = true) { throw null; } public static string TranslateWin32Expression(string expression) { throw null; } } } namespace System.IO.IsolatedStorage { public partial interface INormalizeForIsolatedStorage { object Normalize(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class IsolatedStorage : System.MarshalByRefObject { protected IsolatedStorage() { } [System.MonoTODOAttribute("Does not currently use the manifest support")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public object ApplicationIdentity { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)]get { throw null; } } public object AssemblyIdentity { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)]get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual long AvailableFreeSpace { get { throw null; } } [System.CLSCompliantAttribute(false)] [System.ObsoleteAttribute] public virtual ulong CurrentSize { get { throw null; } } public object DomainIdentity { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)]get { throw null; } } [System.CLSCompliantAttribute(false)] [System.ObsoleteAttribute] public virtual ulong MaximumSize { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual long Quota { get { throw null; } } public System.IO.IsolatedStorage.IsolatedStorageScope Scope { get { throw null; } } protected virtual char SeparatorExternal { get { throw null; } } protected virtual char SeparatorInternal { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual long UsedSize { get { throw null; } } protected virtual System.Security.Permissions.IsolatedStoragePermission GetPermission(System.Security.PermissionSet ps) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual bool IncreaseQuotaTo(long newQuotaSize) { throw null; } [System.MonoTODOAttribute("requires manifest support")] protected void InitStore(System.IO.IsolatedStorage.IsolatedStorageScope scope, System.Type appEvidenceType) { } protected void InitStore(System.IO.IsolatedStorage.IsolatedStorageScope scope, System.Type domainEvidenceType, System.Type assemblyEvidenceType) { } public abstract void Remove(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class IsolatedStorageException : System.Exception { public IsolatedStorageException() { } protected IsolatedStorageException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public IsolatedStorageException(string message) { } public IsolatedStorageException(string message, System.Exception inner) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.Permissions.FileIOPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] public sealed partial class IsolatedStorageFile : System.IO.IsolatedStorage.IsolatedStorage, System.IDisposable { internal IsolatedStorageFile() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override long AvailableFreeSpace { get { throw null; } } [System.CLSCompliantAttribute(false)] [System.ObsoleteAttribute] public override ulong CurrentSize { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static bool IsEnabled { get { throw null; } } [System.CLSCompliantAttribute(false)] [System.ObsoleteAttribute] public override ulong MaximumSize { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override long Quota { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override long UsedSize { get { throw null; } } public void Close() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void CopyFile(string sourceFileName, string destinationFileName) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void CopyFile(string sourceFileName, string destinationFileName, bool overwrite) { } public void CreateDirectory(string dir) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.IO.IsolatedStorage.IsolatedStorageFileStream CreateFile(string path) { throw null; } public void DeleteDirectory(string dir) { } public void DeleteFile(string file) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool DirectoryExists(string path) { throw null; } public void Dispose() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool FileExists(string path) { throw null; } ~IsolatedStorageFile() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.DateTimeOffset GetCreationTime(string path) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public string[] GetDirectoryNames() { throw null; } public string[] GetDirectoryNames(string searchPattern) { throw null; } public static System.Collections.IEnumerator GetEnumerator(System.IO.IsolatedStorage.IsolatedStorageScope scope) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public string[] GetFileNames() { throw null; } public string[] GetFileNames(string searchPattern) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.DateTimeOffset GetLastAccessTime(string path) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.DateTimeOffset GetLastWriteTime(string path) { throw null; } [System.Security.Permissions.IsolatedStorageFilePermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UsageAllowed=System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByMachine)] public static System.IO.IsolatedStorage.IsolatedStorageFile GetMachineStoreForApplication() { throw null; } [System.Security.Permissions.IsolatedStorageFilePermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UsageAllowed=System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByMachine)] public static System.IO.IsolatedStorage.IsolatedStorageFile GetMachineStoreForAssembly() { throw null; } [System.Security.Permissions.IsolatedStorageFilePermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UsageAllowed=System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByMachine)] public static System.IO.IsolatedStorage.IsolatedStorageFile GetMachineStoreForDomain() { throw null; } protected override System.Security.Permissions.IsolatedStoragePermission GetPermission(System.Security.PermissionSet ps) { throw null; } public static System.IO.IsolatedStorage.IsolatedStorageFile GetStore(System.IO.IsolatedStorage.IsolatedStorageScope scope, object applicationIdentity) { throw null; } public static System.IO.IsolatedStorage.IsolatedStorageFile GetStore(System.IO.IsolatedStorage.IsolatedStorageScope scope, object domainIdentity, object assemblyIdentity) { throw null; } public static System.IO.IsolatedStorage.IsolatedStorageFile GetStore(System.IO.IsolatedStorage.IsolatedStorageScope scope, System.Security.Policy.Evidence domainEvidence, System.Type domainEvidenceType, System.Security.Policy.Evidence assemblyEvidence, System.Type assemblyEvidenceType) { throw null; } public static System.IO.IsolatedStorage.IsolatedStorageFile GetStore(System.IO.IsolatedStorage.IsolatedStorageScope scope, System.Type applicationEvidenceType) { throw null; } public static System.IO.IsolatedStorage.IsolatedStorageFile GetStore(System.IO.IsolatedStorage.IsolatedStorageScope scope, System.Type domainEvidenceType, System.Type assemblyEvidenceType) { throw null; } [System.Security.Permissions.IsolatedStorageFilePermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UsageAllowed=System.Security.Permissions.IsolatedStorageContainment.ApplicationIsolationByUser)] public static System.IO.IsolatedStorage.IsolatedStorageFile GetUserStoreForApplication() { throw null; } [System.Security.Permissions.IsolatedStorageFilePermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UsageAllowed=System.Security.Permissions.IsolatedStorageContainment.AssemblyIsolationByUser)] public static System.IO.IsolatedStorage.IsolatedStorageFile GetUserStoreForAssembly() { throw null; } [System.Security.Permissions.IsolatedStorageFilePermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UsageAllowed=System.Security.Permissions.IsolatedStorageContainment.DomainIsolationByUser)] public static System.IO.IsolatedStorage.IsolatedStorageFile GetUserStoreForDomain() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static System.IO.IsolatedStorage.IsolatedStorageFile GetUserStoreForSite() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool IncreaseQuotaTo(long newQuotaSize) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void MoveFile(string sourceFileName, string destinationFileName) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile(string path, System.IO.FileMode mode) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile(string path, System.IO.FileMode mode, System.IO.FileAccess access) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share) { throw null; } public override void Remove() { } public static void Remove(System.IO.IsolatedStorage.IsolatedStorageScope scope) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class IsolatedStorageFileStream : System.IO.FileStream { public IsolatedStorageFileStream(string path, System.IO.FileMode mode) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } public IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } public IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } public IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } [System.Security.Permissions.FileIOPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, Unrestricted=true)] public IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize, System.IO.IsolatedStorage.IsolatedStorageFile isf) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } public IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.IO.IsolatedStorage.IsolatedStorageFile isf) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } public IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.IsolatedStorage.IsolatedStorageFile isf) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } public IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.IsolatedStorage.IsolatedStorageFile isf) : base (default(System.IntPtr), default(System.IO.FileAccess)) { } public override bool CanRead { get { throw null; } } public override bool CanSeek { get { throw null; } } public override bool CanWrite { get { throw null; } } [System.ObsoleteAttribute("Use SafeFileHandle - once available")] public override System.IntPtr Handle { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]get { throw null; } } public override bool IsAsync { get { throw null; } } public override long Length { get { throw null; } } public override long Position { get { throw null; } set { } } public override Microsoft.Win32.SafeHandles.SafeFileHandle SafeFileHandle { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)]get { throw null; } } public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int numBytes, System.AsyncCallback userCallback, object stateObject) { throw null; } public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int numBytes, System.AsyncCallback userCallback, object stateObject) { throw null; } protected override void Dispose(bool disposing) { } public override int EndRead(System.IAsyncResult asyncResult) { throw null; } public override void EndWrite(System.IAsyncResult asyncResult) { } public override void Flush() { } public override void Flush(bool flushToDisk) { } public override int Read(byte[] buffer, int offset, int count) { throw null; } public override int ReadByte() { throw null; } public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; } public override void SetLength(long value) { } public override void Write(byte[] buffer, int offset, int count) { } public override void WriteByte(byte value) { } } [System.FlagsAttribute] public enum IsolatedStorageScope { Application = 32, Assembly = 4, Domain = 2, Machine = 16, None = 0, Roaming = 8, User = 1, } public enum IsolatedStorageSecurityOptions { IncreaseQuotaForApplication = 4, } public partial class IsolatedStorageSecurityState : System.Security.SecurityState { internal IsolatedStorageSecurityState() { } public System.IO.IsolatedStorage.IsolatedStorageSecurityOptions Options { get { throw null; } } public long Quota { get { throw null; } set { } } public long UsedSize { get { throw null; } } public override void EnsureState() { } } } namespace System.Numerics { public static partial class Vector { public static bool IsHardwareAccelerated { get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Abs(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Add(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector AndNot(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector AsVectorByte(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector AsVectorDouble(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector AsVectorInt16(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector AsVectorInt32(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector AsVectorInt64(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static System.Numerics.Vector AsVectorSByte(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector AsVectorSingle(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static System.Numerics.Vector AsVectorUInt16(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static System.Numerics.Vector AsVectorUInt32(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)][System.CLSCompliantAttribute(false)] public static System.Numerics.Vector AsVectorUInt64(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector BitwiseAnd(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector BitwiseOr(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector ConditionalSelect(System.Numerics.Vector condition, System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector ConditionalSelect(System.Numerics.Vector condition, System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector ConditionalSelect(System.Numerics.Vector condition, System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } public static System.Numerics.Vector ConvertToDouble(System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector ConvertToDouble(System.Numerics.Vector value) { throw null; } public static System.Numerics.Vector ConvertToInt32(System.Numerics.Vector value) { throw null; } public static System.Numerics.Vector ConvertToInt64(System.Numerics.Vector value) { throw null; } public static System.Numerics.Vector ConvertToSingle(System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector ConvertToSingle(System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector ConvertToUInt32(System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector ConvertToUInt64(System.Numerics.Vector value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Divide(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static T Dot(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Equals(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Equals(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Equals(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Equals(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool EqualsAll(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool EqualsAny(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Equals(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool GreaterThanAll(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool GreaterThanAny(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool GreaterThanOrEqualAll(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool GreaterThanOrEqualAny(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector GreaterThan(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThan(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool LessThanAll(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool LessThanAny(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool LessThanOrEqualAll(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool LessThanOrEqualAny(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThanOrEqual(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector LessThan(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Max(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Min(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Multiply(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Multiply(System.Numerics.Vector left, T right) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Multiply(T left, System.Numerics.Vector right) where T : struct { throw null; } public static System.Numerics.Vector Narrow(System.Numerics.Vector low, System.Numerics.Vector high) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector Narrow(System.Numerics.Vector low, System.Numerics.Vector high) { throw null; } public static System.Numerics.Vector Narrow(System.Numerics.Vector low, System.Numerics.Vector high) { throw null; } public static System.Numerics.Vector Narrow(System.Numerics.Vector low, System.Numerics.Vector high) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector Narrow(System.Numerics.Vector low, System.Numerics.Vector high) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector Narrow(System.Numerics.Vector low, System.Numerics.Vector high) { throw null; } [System.CLSCompliantAttribute(false)] public static System.Numerics.Vector Narrow(System.Numerics.Vector low, System.Numerics.Vector high) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Negate(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector OnesComplement(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector SquareRoot(System.Numerics.Vector value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Subtract(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } [System.CLSCompliantAttribute(false)] public static void Widen(System.Numerics.Vector source, out System.Numerics.Vector low, out System.Numerics.Vector high) { throw null; } public static void Widen(System.Numerics.Vector source, out System.Numerics.Vector low, out System.Numerics.Vector high) { throw null; } public static void Widen(System.Numerics.Vector source, out System.Numerics.Vector low, out System.Numerics.Vector high) { throw null; } [System.CLSCompliantAttribute(false)] public static void Widen(System.Numerics.Vector source, out System.Numerics.Vector low, out System.Numerics.Vector high) { throw null; } public static void Widen(System.Numerics.Vector source, out System.Numerics.Vector low, out System.Numerics.Vector high) { throw null; } [System.CLSCompliantAttribute(false)] public static void Widen(System.Numerics.Vector source, out System.Numerics.Vector low, out System.Numerics.Vector high) { throw null; } [System.CLSCompliantAttribute(false)] public static void Widen(System.Numerics.Vector source, out System.Numerics.Vector low, out System.Numerics.Vector high) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector Xor(System.Numerics.Vector left, System.Numerics.Vector right) where T : struct { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Vector : System.IEquatable>, System.IFormattable where T : struct { private int _dummyPrimitive; public Vector(System.Span values) { throw null; } public Vector(T value) { throw null; } public Vector(T[] values) { throw null; } public Vector(T[] values, int index) { throw null; } public static int Count { get { throw null; } } public T this[int index] { get { throw null; } } public static System.Numerics.Vector One { get { throw null; } } public static System.Numerics.Vector Zero { get { throw null; } } public void CopyTo(T[] destination) { } public void CopyTo(T[] destination, int startIndex) { } public bool Equals(System.Numerics.Vector other) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static System.Numerics.Vector operator +(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static System.Numerics.Vector operator &(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static System.Numerics.Vector operator |(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static System.Numerics.Vector operator /(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool operator ==(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static System.Numerics.Vector operator ^(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } [System.CLSCompliantAttribute(false)] public static explicit operator System.Numerics.Vector (System.Numerics.Vector value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool operator !=(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static System.Numerics.Vector operator *(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static System.Numerics.Vector operator *(System.Numerics.Vector value, T factor) { throw null; } public static System.Numerics.Vector operator *(T factor, System.Numerics.Vector value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Numerics.Vector operator ~(System.Numerics.Vector value) { throw null; } public static System.Numerics.Vector operator -(System.Numerics.Vector left, System.Numerics.Vector right) { throw null; } public static System.Numerics.Vector operator -(System.Numerics.Vector value) { throw null; } public override string ToString() { throw null; } public string ToString(string format) { throw null; } public string ToString(string format, System.IFormatProvider formatProvider) { throw null; } } } namespace System.Reflection { [System.SerializableAttribute] public sealed partial class AmbiguousMatchException : System.SystemException { public AmbiguousMatchException() { } public AmbiguousMatchException(string message) { } public AmbiguousMatchException(string message, System.Exception inner) { } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._Assembly))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class Assembly : System.Reflection.ICustomAttributeProvider, System.Runtime.InteropServices._Assembly, System.Runtime.Serialization.ISerializable, System.Security.IEvidenceFactory { protected Assembly() { } public virtual string CodeBase { get { throw null; } } public virtual System.Collections.Generic.IEnumerable CustomAttributes { get { throw null; } } public virtual System.Collections.Generic.IEnumerable DefinedTypes { get { throw null; } } public virtual System.Reflection.MethodInfo EntryPoint { get { throw null; } } public virtual string EscapedCodeBase { get { throw null; } } public virtual System.Security.Policy.Evidence Evidence { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true)]get { throw null; } } public virtual System.Collections.Generic.IEnumerable ExportedTypes { get { throw null; } } public virtual string FullName { get { throw null; } } public virtual bool GlobalAssemblyCache { get { throw null; } } [System.MonoTODOAttribute("Currently it always returns zero")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual long HostContext { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual string ImageRuntimeVersion { get { throw null; } } public virtual bool IsDynamic { get { throw null; } } [System.MonoTODOAttribute] public bool IsFullyTrusted { get { throw null; } } public virtual string Location { get { throw null; } } public virtual System.Reflection.Module ManifestModule { get { throw null; } } public virtual System.Collections.Generic.IEnumerable Modules { get { throw null; } } public virtual System.Security.PermissionSet PermissionSet { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual bool ReflectionOnly { get { throw null; } } public virtual System.Security.SecurityRuleSet SecurityRuleSet { get { throw null; } } public virtual event System.Reflection.ModuleResolveEventHandler ModuleResolve { add { } remove { } } public object CreateInstance(string typeName) { throw null; } public object CreateInstance(string typeName, bool ignoreCase) { throw null; } public virtual object CreateInstance(string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes) { throw null; } public static string CreateQualifiedName(string assemblyName, string typeName) { throw null; } public override bool Equals(object o) { throw null; } public static System.Reflection.Assembly GetAssembly(System.Type type) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.Reflection.Assembly GetCallingAssembly() { throw null; } public virtual object[] GetCustomAttributes(bool inherit) { throw null; } public virtual object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public virtual System.Collections.Generic.IList GetCustomAttributesData() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.Reflection.Assembly GetEntryAssembly() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.Reflection.Assembly GetExecutingAssembly() { throw null; } public virtual System.Type[] GetExportedTypes() { throw null; } public virtual System.IO.FileStream GetFile(string name) { throw null; } public virtual System.IO.FileStream[] GetFiles() { throw null; } public virtual System.IO.FileStream[] GetFiles(bool getResourceModules) { throw null; } public virtual System.Type[] GetForwardedTypes() { throw null; } public override int GetHashCode() { throw null; } public System.Reflection.Module[] GetLoadedModules() { throw null; } [System.MonoTODOAttribute("Always returns the same as GetModules")] public virtual System.Reflection.Module[] GetLoadedModules(bool getResourceModules) { throw null; } public virtual System.Reflection.ManifestResourceInfo GetManifestResourceInfo(string resourceName) { throw null; } public virtual string[] GetManifestResourceNames() { throw null; } public virtual System.IO.Stream GetManifestResourceStream(string name) { throw null; } public virtual System.IO.Stream GetManifestResourceStream(System.Type type, string name) { throw null; } public virtual System.Reflection.Module GetModule(string name) { throw null; } public System.Reflection.Module[] GetModules() { throw null; } public virtual System.Reflection.Module[] GetModules(bool getResourceModules) { throw null; } public virtual System.Reflection.AssemblyName GetName() { throw null; } public virtual System.Reflection.AssemblyName GetName(bool copiedName) { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual System.Reflection.AssemblyName[] GetReferencedAssemblies() { throw null; } public virtual System.Reflection.Assembly GetSatelliteAssembly(System.Globalization.CultureInfo culture) { throw null; } public virtual System.Reflection.Assembly GetSatelliteAssembly(System.Globalization.CultureInfo culture, System.Version version) { throw null; } public virtual System.Type GetType(string name) { throw null; } public virtual System.Type GetType(string name, bool throwOnError) { throw null; } public virtual System.Type GetType(string name, bool throwOnError, bool ignoreCase) { throw null; } public virtual System.Type[] GetTypes() { throw null; } public virtual bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public static System.Reflection.Assembly Load(byte[] rawAssembly) { throw null; } public static System.Reflection.Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore) { throw null; } [System.ObsoleteAttribute] public static System.Reflection.Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore, System.Security.Policy.Evidence securityEvidence) { throw null; } [System.MonoLimitationAttribute("Argument securityContextSource is ignored")] public static System.Reflection.Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore, System.Security.SecurityContextSource securityContextSource) { throw null; } public static System.Reflection.Assembly Load(System.Reflection.AssemblyName assemblyRef) { throw null; } [System.ObsoleteAttribute] public static System.Reflection.Assembly Load(System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity) { throw null; } public static System.Reflection.Assembly Load(string assemblyString) { throw null; } [System.ObsoleteAttribute] public static System.Reflection.Assembly Load(string assemblyString, System.Security.Policy.Evidence assemblySecurity) { throw null; } public static System.Reflection.Assembly LoadFile(string path) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.ObsoleteAttribute] public static System.Reflection.Assembly LoadFile(string path, System.Security.Policy.Evidence securityEvidence) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Reflection.Assembly LoadFrom(string assemblyFile) { throw null; } [System.MonoTODOAttribute] public static System.Reflection.Assembly LoadFrom(string assemblyFile, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.ObsoleteAttribute] public static System.Reflection.Assembly LoadFrom(string assemblyFile, System.Security.Policy.Evidence securityEvidence) { throw null; } [System.MonoTODOAttribute("This overload is not currently implemented")] [System.ObsoleteAttribute] public static System.Reflection.Assembly LoadFrom(string assemblyFile, System.Security.Policy.Evidence securityEvidence, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm) { throw null; } [System.MonoTODOAttribute("Not implemented")] public System.Reflection.Module LoadModule(string moduleName, byte[] rawModule) { throw null; } [System.MonoTODOAttribute("Not implemented")] public virtual System.Reflection.Module LoadModule(string moduleName, byte[] rawModule, byte[] rawSymbolStore) { throw null; } [System.ObsoleteAttribute("This method has been deprecated. Please use Assembly.Load() instead. http://go.microsoft.com/fwlink/?linkid=14202")] public static System.Reflection.Assembly LoadWithPartialName(string partialName) { throw null; } [System.ObsoleteAttribute("This method has been deprecated. Please use Assembly.Load() instead. http://go.microsoft.com/fwlink/?linkid=14202")] public static System.Reflection.Assembly LoadWithPartialName(string partialName, System.Security.Policy.Evidence securityEvidence) { throw null; } public static bool operator ==(System.Reflection.Assembly left, System.Reflection.Assembly right) { throw null; } public static bool operator !=(System.Reflection.Assembly left, System.Reflection.Assembly right) { throw null; } public static System.Reflection.Assembly ReflectionOnlyLoad(byte[] rawAssembly) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Reflection.Assembly ReflectionOnlyLoad(string assemblyString) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Reflection.Assembly ReflectionOnlyLoadFrom(string assemblyFile) { throw null; } System.Type System.Runtime.InteropServices._Assembly.GetType() { throw null; } public override string ToString() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public static System.Reflection.Assembly UnsafeLoadFrom(string assemblyFile) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyAlgorithmIdAttribute : System.Attribute { public AssemblyAlgorithmIdAttribute(System.Configuration.Assemblies.AssemblyHashAlgorithm algorithmId) { } [System.CLSCompliantAttribute(false)] public AssemblyAlgorithmIdAttribute(uint algorithmId) { } [System.CLSCompliantAttribute(false)] public uint AlgorithmId { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyCompanyAttribute : System.Attribute { public AssemblyCompanyAttribute(string company) { } public string Company { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyConfigurationAttribute : System.Attribute { public AssemblyConfigurationAttribute(string configuration) { } public string Configuration { get { throw null; } } } public enum AssemblyContentType { Default = 0, WindowsRuntime = 1, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyCopyrightAttribute : System.Attribute { public AssemblyCopyrightAttribute(string copyright) { } public string Copyright { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyCultureAttribute : System.Attribute { public AssemblyCultureAttribute(string culture) { } public string Culture { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyDefaultAliasAttribute : System.Attribute { public AssemblyDefaultAliasAttribute(string defaultAlias) { } public string DefaultAlias { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyDelaySignAttribute : System.Attribute { public AssemblyDelaySignAttribute(bool delaySign) { } public bool DelaySign { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyDescriptionAttribute : System.Attribute { public AssemblyDescriptionAttribute(string description) { } public string Description { get { throw null; } } } public static partial class AssemblyExtensions { public static System.Type[] GetExportedTypes(System.Reflection.Assembly assembly) { throw null; } public static System.Reflection.Module[] GetModules(System.Reflection.Assembly assembly) { throw null; } public static System.Type[] GetTypes(System.Reflection.Assembly assembly) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyFileVersionAttribute : System.Attribute { public AssemblyFileVersionAttribute(string version) { } public string Version { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyFlagsAttribute : System.Attribute { [System.ObsoleteAttribute("This constructor has been deprecated. Please use AssemblyFlagsAttribute(AssemblyNameFlags) instead. http://go.microsoft.com/fwlink/?linkid=14202")] public AssemblyFlagsAttribute(int assemblyFlags) { } public AssemblyFlagsAttribute(System.Reflection.AssemblyNameFlags assemblyFlags) { } [System.CLSCompliantAttribute(false)] [System.ObsoleteAttribute("This constructor has been deprecated. Please use AssemblyFlagsAttribute(AssemblyNameFlags) instead. http://go.microsoft.com/fwlink/?linkid=14202")] public AssemblyFlagsAttribute(uint flags) { } public int AssemblyFlags { get { throw null; } } [System.CLSCompliantAttribute(false)] [System.ObsoleteAttribute("This property has been deprecated. Please use AssemblyFlags instead. http://go.microsoft.com/fwlink/?linkid=14202")] public uint Flags { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyInformationalVersionAttribute : System.Attribute { public AssemblyInformationalVersionAttribute(string informationalVersion) { } public string InformationalVersion { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyKeyFileAttribute : System.Attribute { public AssemblyKeyFileAttribute(string keyFile) { } public string KeyFile { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyKeyNameAttribute : System.Attribute { public AssemblyKeyNameAttribute(string keyName) { } public string KeyName { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true, Inherited=false)] public sealed partial class AssemblyMetadataAttribute : System.Attribute { public AssemblyMetadataAttribute(string key, string value) { } public string Key { get { throw null; } } public string Value { get { throw null; } } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._AssemblyName))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class AssemblyName : System.ICloneable, System.Runtime.InteropServices._AssemblyName, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { public AssemblyName() { } public AssemblyName(string assemblyName) { } public string CodeBase { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Reflection.AssemblyContentType ContentType { get { throw null; } set { } } public System.Globalization.CultureInfo CultureInfo { get { throw null; } set { } } public string CultureName { get { throw null; } set { } } public string EscapedCodeBase { get { throw null; } } public System.Reflection.AssemblyNameFlags Flags { get { throw null; } set { } } public string FullName { get { throw null; } } public System.Configuration.Assemblies.AssemblyHashAlgorithm HashAlgorithm { get { throw null; } set { } } public System.Reflection.StrongNameKeyPair KeyPair { get { throw null; } set { } } public string Name { get { throw null; } set { } } public System.Reflection.ProcessorArchitecture ProcessorArchitecture { get { throw null; } set { } } public System.Version Version { get { throw null; } set { } } public System.Configuration.Assemblies.AssemblyVersionCompatibility VersionCompatibility { get { throw null; } set { } } public object Clone() { throw null; } public static System.Reflection.AssemblyName GetAssemblyName(string assemblyFile) { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public byte[] GetPublicKey() { throw null; } public byte[] GetPublicKeyToken() { throw null; } public void OnDeserialization(object sender) { } public static bool ReferenceMatchesDefinition(System.Reflection.AssemblyName reference, System.Reflection.AssemblyName definition) { throw null; } public void SetPublicKey(byte[] publicKey) { } public void SetPublicKeyToken(byte[] publicKeyToken) { } void System.Runtime.InteropServices._AssemblyName.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._AssemblyName.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._AssemblyName.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._AssemblyName.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public override string ToString() { throw null; } } [System.FlagsAttribute] public enum AssemblyNameFlags { EnableJITcompileOptimizer = 16384, EnableJITcompileTracking = 32768, None = 0, PublicKey = 1, Retargetable = 256, } public partial class AssemblyNameProxy : System.MarshalByRefObject { public AssemblyNameProxy() { } public System.Reflection.AssemblyName GetAssemblyName(string assemblyFile) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyProductAttribute : System.Attribute { public AssemblyProductAttribute(string product) { } public string Product { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false, AllowMultiple=false)] public sealed partial class AssemblySignatureKeyAttribute : System.Attribute { public AssemblySignatureKeyAttribute(string publicKey, string countersignature) { } public string Countersignature { get { throw null; } } public string PublicKey { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyTitleAttribute : System.Attribute { public AssemblyTitleAttribute(string title) { } public string Title { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyTrademarkAttribute : System.Attribute { public AssemblyTrademarkAttribute(string trademark) { } public string Trademark { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyVersionAttribute : System.Attribute { public AssemblyVersionAttribute(string version) { } public string Version { get { throw null; } } } public abstract partial class Binder { protected Binder() { } public abstract System.Reflection.FieldInfo BindToField(System.Reflection.BindingFlags bindingAttr, System.Reflection.FieldInfo[] match, object value, System.Globalization.CultureInfo culture); public abstract System.Reflection.MethodBase BindToMethod(System.Reflection.BindingFlags bindingAttr, System.Reflection.MethodBase[] match, ref object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] names, out object state); public virtual bool CanChangeType(object value, System.Type type, System.Globalization.CultureInfo culture) { throw null; } public abstract object ChangeType(object value, System.Type type, System.Globalization.CultureInfo culture); public abstract void ReorderArgumentArray(ref object[] args, object state); public abstract System.Reflection.MethodBase SelectMethod(System.Reflection.BindingFlags bindingAttr, System.Reflection.MethodBase[] match, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); public abstract System.Reflection.PropertyInfo SelectProperty(System.Reflection.BindingFlags bindingAttr, System.Reflection.PropertyInfo[] match, System.Type returnType, System.Type[] indexes, System.Reflection.ParameterModifier[] modifiers); } [System.FlagsAttribute] public enum BindingFlags { CreateInstance = 512, DeclaredOnly = 2, Default = 0, DoNotWrapExceptions = 33554432, ExactBinding = 65536, FlattenHierarchy = 64, GetField = 1024, GetProperty = 4096, IgnoreCase = 1, IgnoreReturn = 16777216, Instance = 4, InvokeMethod = 256, NonPublic = 32, OptionalParamBinding = 262144, Public = 16, PutDispProperty = 16384, PutRefDispProperty = 32768, SetField = 2048, SetProperty = 8192, Static = 8, SuppressChangeType = 131072, } [System.FlagsAttribute] public enum CallingConventions { Any = 3, ExplicitThis = 64, HasThis = 32, Standard = 1, VarArgs = 2, } [System.SerializableAttribute] public abstract partial class ConstructorInfo : System.Reflection.MethodBase { public static readonly string ConstructorName; public static readonly string TypeConstructorName; protected ConstructorInfo() { } public override System.Reflection.MemberTypes MemberType { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public object Invoke(object[] parameters) { throw null; } public abstract object Invoke(System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture); public static bool operator ==(System.Reflection.ConstructorInfo left, System.Reflection.ConstructorInfo right) { throw null; } public static bool operator !=(System.Reflection.ConstructorInfo left, System.Reflection.ConstructorInfo right) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class CustomAttributeData { protected CustomAttributeData() { } public System.Type AttributeType { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public virtual System.Reflection.ConstructorInfo Constructor { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public virtual System.Collections.Generic.IList ConstructorArguments { get { throw null; } } public virtual System.Collections.Generic.IList NamedArguments { get { throw null; } } public override bool Equals(object obj) { throw null; } public static System.Collections.Generic.IList GetCustomAttributes(System.Reflection.Assembly target) { throw null; } public static System.Collections.Generic.IList GetCustomAttributes(System.Reflection.MemberInfo target) { throw null; } public static System.Collections.Generic.IList GetCustomAttributes(System.Reflection.Module target) { throw null; } public static System.Collections.Generic.IList GetCustomAttributes(System.Reflection.ParameterInfo target) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } public static partial class CustomAttributeExtensions { public static System.Attribute GetCustomAttribute(this System.Reflection.Assembly element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(this System.Reflection.MemberInfo element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(this System.Reflection.MemberInfo element, System.Type attributeType, bool inherit) { throw null; } public static System.Attribute GetCustomAttribute(this System.Reflection.Module element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(this System.Reflection.ParameterInfo element, System.Type attributeType) { throw null; } public static System.Attribute GetCustomAttribute(this System.Reflection.ParameterInfo element, System.Type attributeType, bool inherit) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.Assembly element) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.Assembly element, System.Type attributeType) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.MemberInfo element) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.MemberInfo element, bool inherit) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.MemberInfo element, System.Type attributeType) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.MemberInfo element, System.Type attributeType, bool inherit) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.Module element) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.Module element, System.Type attributeType) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.ParameterInfo element) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.ParameterInfo element, bool inherit) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.ParameterInfo element, System.Type attributeType) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.ParameterInfo element, System.Type attributeType, bool inherit) { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.Assembly element) where T : System.Attribute { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.MemberInfo element) where T : System.Attribute { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.MemberInfo element, bool inherit) where T : System.Attribute { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.Module element) where T : System.Attribute { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.ParameterInfo element) where T : System.Attribute { throw null; } public static System.Collections.Generic.IEnumerable GetCustomAttributes(this System.Reflection.ParameterInfo element, bool inherit) where T : System.Attribute { throw null; } public static T GetCustomAttribute(this System.Reflection.Assembly element) where T : System.Attribute { throw null; } public static T GetCustomAttribute(this System.Reflection.MemberInfo element) where T : System.Attribute { throw null; } public static T GetCustomAttribute(this System.Reflection.MemberInfo element, bool inherit) where T : System.Attribute { throw null; } public static T GetCustomAttribute(this System.Reflection.Module element) where T : System.Attribute { throw null; } public static T GetCustomAttribute(this System.Reflection.ParameterInfo element) where T : System.Attribute { throw null; } public static T GetCustomAttribute(this System.Reflection.ParameterInfo element, bool inherit) where T : System.Attribute { throw null; } public static bool IsDefined(this System.Reflection.Assembly element, System.Type attributeType) { throw null; } public static bool IsDefined(this System.Reflection.MemberInfo element, System.Type attributeType) { throw null; } public static bool IsDefined(this System.Reflection.MemberInfo element, System.Type attributeType, bool inherit) { throw null; } public static bool IsDefined(this System.Reflection.Module element, System.Type attributeType) { throw null; } public static bool IsDefined(this System.Reflection.ParameterInfo element, System.Type attributeType) { throw null; } public static bool IsDefined(this System.Reflection.ParameterInfo element, System.Type attributeType, bool inherit) { throw null; } } [System.SerializableAttribute] public partial class CustomAttributeFormatException : System.FormatException { public CustomAttributeFormatException() { } protected CustomAttributeFormatException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public CustomAttributeFormatException(string message) { } public CustomAttributeFormatException(string message, System.Exception inner) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct CustomAttributeNamedArgument { private object _dummy; private int _dummyPrimitive; public CustomAttributeNamedArgument(System.Reflection.MemberInfo memberInfo, object value) { throw null; } public CustomAttributeNamedArgument(System.Reflection.MemberInfo memberInfo, System.Reflection.CustomAttributeTypedArgument typedArgument) { throw null; } public bool IsField { get { throw null; } } public System.Reflection.MemberInfo MemberInfo { get { throw null; } } public string MemberName { get { throw null; } } public System.Reflection.CustomAttributeTypedArgument TypedValue { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.CustomAttributeNamedArgument left, System.Reflection.CustomAttributeNamedArgument right) { throw null; } public static bool operator !=(System.Reflection.CustomAttributeNamedArgument left, System.Reflection.CustomAttributeNamedArgument right) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct CustomAttributeTypedArgument { private object _dummy; public CustomAttributeTypedArgument(object value) { throw null; } public CustomAttributeTypedArgument(System.Type argumentType, object value) { throw null; } public System.Type ArgumentType { get { throw null; } } public object Value { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.CustomAttributeTypedArgument left, System.Reflection.CustomAttributeTypedArgument right) { throw null; } public static bool operator !=(System.Reflection.CustomAttributeTypedArgument left, System.Reflection.CustomAttributeTypedArgument right) { throw null; } public override string ToString() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Struct)] public sealed partial class DefaultMemberAttribute : System.Attribute { public DefaultMemberAttribute(string memberName) { } public string MemberName { get { throw null; } } } [System.FlagsAttribute] public enum EventAttributes { None = 0, ReservedMask = 1024, RTSpecialName = 1024, SpecialName = 512, } [System.SerializableAttribute] public abstract partial class EventInfo : System.Reflection.MemberInfo { protected EventInfo() { } public virtual System.Reflection.MethodInfo AddMethod { get { throw null; } } public abstract System.Reflection.EventAttributes Attributes { get; } public virtual System.Type EventHandlerType { get { throw null; } } public virtual bool IsMulticast { get { throw null; } } public bool IsSpecialName { get { throw null; } } public override System.Reflection.MemberTypes MemberType { get { throw null; } } public virtual System.Reflection.MethodInfo RaiseMethod { get { throw null; } } public virtual System.Reflection.MethodInfo RemoveMethod { get { throw null; } } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public virtual void AddEventHandler(object target, System.Delegate handler) { } public override bool Equals(object obj) { throw null; } public System.Reflection.MethodInfo GetAddMethod() { throw null; } public abstract System.Reflection.MethodInfo GetAddMethod(bool nonPublic); public override int GetHashCode() { throw null; } public System.Reflection.MethodInfo[] GetOtherMethods() { throw null; } public virtual System.Reflection.MethodInfo[] GetOtherMethods(bool nonPublic) { throw null; } public System.Reflection.MethodInfo GetRaiseMethod() { throw null; } public abstract System.Reflection.MethodInfo GetRaiseMethod(bool nonPublic); public System.Reflection.MethodInfo GetRemoveMethod() { throw null; } public abstract System.Reflection.MethodInfo GetRemoveMethod(bool nonPublic); public static bool operator ==(System.Reflection.EventInfo left, System.Reflection.EventInfo right) { throw null; } public static bool operator !=(System.Reflection.EventInfo left, System.Reflection.EventInfo right) { throw null; } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public virtual void RemoveEventHandler(object target, System.Delegate handler) { } } public static partial class EventInfoExtensions { public static System.Reflection.MethodInfo GetAddMethod(System.Reflection.EventInfo eventInfo) { throw null; } public static System.Reflection.MethodInfo GetAddMethod(System.Reflection.EventInfo eventInfo, bool nonPublic) { throw null; } public static System.Reflection.MethodInfo GetRaiseMethod(System.Reflection.EventInfo eventInfo) { throw null; } public static System.Reflection.MethodInfo GetRaiseMethod(System.Reflection.EventInfo eventInfo, bool nonPublic) { throw null; } public static System.Reflection.MethodInfo GetRemoveMethod(System.Reflection.EventInfo eventInfo) { throw null; } public static System.Reflection.MethodInfo GetRemoveMethod(System.Reflection.EventInfo eventInfo, bool nonPublic) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class ExceptionHandlingClause { protected ExceptionHandlingClause() { } public virtual System.Type CatchType { get { throw null; } } public virtual int FilterOffset { get { throw null; } } public virtual System.Reflection.ExceptionHandlingClauseOptions Flags { get { throw null; } } public virtual int HandlerLength { get { throw null; } } public virtual int HandlerOffset { get { throw null; } } public virtual int TryLength { get { throw null; } } public virtual int TryOffset { get { throw null; } } public override string ToString() { throw null; } } [System.FlagsAttribute] public enum ExceptionHandlingClauseOptions { Clause = 0, Fault = 4, Filter = 1, Finally = 2, } [System.FlagsAttribute] public enum FieldAttributes { Assembly = 3, FamANDAssem = 2, Family = 4, FamORAssem = 5, FieldAccessMask = 7, HasDefault = 32768, HasFieldMarshal = 4096, HasFieldRVA = 256, InitOnly = 32, Literal = 64, NotSerialized = 128, PinvokeImpl = 8192, Private = 1, PrivateScope = 0, Public = 6, ReservedMask = 38144, RTSpecialName = 1024, SpecialName = 512, Static = 16, } [System.SerializableAttribute] public abstract partial class FieldInfo : System.Reflection.MemberInfo { protected FieldInfo() { } public abstract System.Reflection.FieldAttributes Attributes { get; } public abstract System.RuntimeFieldHandle FieldHandle { get; } public abstract System.Type FieldType { get; } public bool IsAssembly { get { throw null; } } public bool IsFamily { get { throw null; } } public bool IsFamilyAndAssembly { get { throw null; } } public bool IsFamilyOrAssembly { get { throw null; } } public bool IsInitOnly { get { throw null; } } public bool IsLiteral { get { throw null; } } public bool IsNotSerialized { get { throw null; } } public bool IsPinvokeImpl { get { throw null; } } public bool IsPrivate { get { throw null; } } public bool IsPublic { get { throw null; } } public virtual bool IsSecurityCritical { get { throw null; } } public virtual bool IsSecuritySafeCritical { get { throw null; } } public virtual bool IsSecurityTransparent { get { throw null; } } public bool IsSpecialName { get { throw null; } } public bool IsStatic { get { throw null; } } public override System.Reflection.MemberTypes MemberType { get { throw null; } } public override bool Equals(object obj) { throw null; } public static System.Reflection.FieldInfo GetFieldFromHandle(System.RuntimeFieldHandle handle) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static System.Reflection.FieldInfo GetFieldFromHandle(System.RuntimeFieldHandle handle, System.RuntimeTypeHandle declaringType) { throw null; } public override int GetHashCode() { throw null; } public virtual System.Type[] GetOptionalCustomModifiers() { throw null; } public virtual object GetRawConstantValue() { throw null; } public virtual System.Type[] GetRequiredCustomModifiers() { throw null; } public abstract object GetValue(object obj); [System.CLSCompliantAttribute(false)] public virtual object GetValueDirect(System.TypedReference obj) { throw null; } public static bool operator ==(System.Reflection.FieldInfo left, System.Reflection.FieldInfo right) { throw null; } public static bool operator !=(System.Reflection.FieldInfo left, System.Reflection.FieldInfo right) { throw null; } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public void SetValue(object obj, object value) { } public abstract void SetValue(object obj, object value, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Globalization.CultureInfo culture); [System.CLSCompliantAttribute(false)] public virtual void SetValueDirect(System.TypedReference obj, object value) { } } [System.FlagsAttribute] public enum GenericParameterAttributes { Contravariant = 2, Covariant = 1, DefaultConstructorConstraint = 16, None = 0, NotNullableValueTypeConstraint = 8, ReferenceTypeConstraint = 4, SpecialConstraintMask = 28, VarianceMask = 3, } public partial interface ICustomAttributeProvider { object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); bool IsDefined(System.Type attributeType, bool inherit); } public enum ImageFileMachine { AMD64 = 34404, ARM = 452, I386 = 332, IA64 = 512, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct InterfaceMapping { public System.Reflection.MethodInfo[] InterfaceMethods; public System.Type InterfaceType; public System.Reflection.MethodInfo[] TargetMethods; public System.Type TargetType; } public static partial class IntrospectionExtensions { public static System.Reflection.TypeInfo GetTypeInfo(this System.Type type) { throw null; } } [System.SerializableAttribute] public partial class InvalidFilterCriteriaException : System.ApplicationException { public InvalidFilterCriteriaException() { } protected InvalidFilterCriteriaException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public InvalidFilterCriteriaException(string message) { } public InvalidFilterCriteriaException(string message, System.Exception inner) { } } public partial interface IReflect { System.Type UnderlyingSystemType { get; } System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr); System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr); System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr); System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr); System.Reflection.PropertyInfo GetProperty(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.PropertyInfo GetProperty(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters); } public partial interface IReflectableType { System.Reflection.TypeInfo GetTypeInfo(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class LocalVariableInfo { protected LocalVariableInfo() { } public virtual bool IsPinned { get { throw null; } } public virtual int LocalIndex { get { throw null; } } public virtual System.Type LocalType { get { throw null; } } public override string ToString() { throw null; } } public partial class ManifestResourceInfo { public ManifestResourceInfo(System.Reflection.Assembly containingAssembly, string containingFileName, System.Reflection.ResourceLocation resourceLocation) { } public virtual string FileName { get { throw null; } } public virtual System.Reflection.Assembly ReferencedAssembly { get { throw null; } } public virtual System.Reflection.ResourceLocation ResourceLocation { get { throw null; } } } public delegate bool MemberFilter(System.Reflection.MemberInfo m, object filterCriteria); [System.SerializableAttribute] public abstract partial class MemberInfo : System.Reflection.ICustomAttributeProvider { protected MemberInfo() { } public virtual System.Collections.Generic.IEnumerable CustomAttributes { get { throw null; } } public abstract System.Type DeclaringType { get; } public abstract System.Reflection.MemberTypes MemberType { get; } public virtual int MetadataToken { get { throw null; } } public virtual System.Reflection.Module Module { get { throw null; } } public abstract string Name { get; } public abstract System.Type ReflectedType { get; } public override bool Equals(object obj) { throw null; } public abstract object[] GetCustomAttributes(bool inherit); public abstract object[] GetCustomAttributes(System.Type attributeType, bool inherit); public virtual System.Collections.Generic.IList GetCustomAttributesData() { throw null; } public override int GetHashCode() { throw null; } public virtual bool HasSameMetadataDefinitionAs(System.Reflection.MemberInfo other) { throw null; } public abstract bool IsDefined(System.Type attributeType, bool inherit); public static bool operator ==(System.Reflection.MemberInfo left, System.Reflection.MemberInfo right) { throw null; } public static bool operator !=(System.Reflection.MemberInfo left, System.Reflection.MemberInfo right) { throw null; } } public static partial class MemberInfoExtensions { public static int GetMetadataToken(this System.Reflection.MemberInfo member) { throw null; } public static bool HasMetadataToken(this System.Reflection.MemberInfo member) { throw null; } } [System.FlagsAttribute] public enum MemberTypes { All = 191, Constructor = 1, Custom = 64, Event = 2, Field = 4, Method = 8, NestedType = 128, Property = 16, TypeInfo = 32, } [System.FlagsAttribute] public enum MethodAttributes { Abstract = 1024, Assembly = 3, CheckAccessOnOverride = 512, FamANDAssem = 2, Family = 4, FamORAssem = 5, Final = 32, HasSecurity = 16384, HideBySig = 128, MemberAccessMask = 7, NewSlot = 256, PinvokeImpl = 8192, Private = 1, PrivateScope = 0, Public = 6, RequireSecObject = 32768, ReservedMask = 53248, ReuseSlot = 0, RTSpecialName = 4096, SpecialName = 2048, Static = 16, UnmanagedExport = 8, Virtual = 64, VtableLayoutMask = 256, } public abstract partial class MethodBase : System.Reflection.MemberInfo { protected MethodBase() { } public abstract System.Reflection.MethodAttributes Attributes { get; } public virtual System.Reflection.CallingConventions CallingConvention { get { throw null; } } public virtual bool ContainsGenericParameters { get { throw null; } } public bool IsAbstract { get { throw null; } } public bool IsAssembly { get { throw null; } } public virtual bool IsConstructedGenericMethod { get { throw null; } } public bool IsConstructor { get { throw null; } } public bool IsFamily { get { throw null; } } public bool IsFamilyAndAssembly { get { throw null; } } public bool IsFamilyOrAssembly { get { throw null; } } public bool IsFinal { get { throw null; } } public virtual bool IsGenericMethod { get { throw null; } } public virtual bool IsGenericMethodDefinition { get { throw null; } } public bool IsHideBySig { get { throw null; } } public bool IsPrivate { get { throw null; } } public bool IsPublic { get { throw null; } } public virtual bool IsSecurityCritical { get { throw null; } } public virtual bool IsSecuritySafeCritical { get { throw null; } } public virtual bool IsSecurityTransparent { get { throw null; } } public bool IsSpecialName { get { throw null; } } public bool IsStatic { get { throw null; } } public bool IsVirtual { get { throw null; } } public abstract System.RuntimeMethodHandle MethodHandle { get; } public virtual System.Reflection.MethodImplAttributes MethodImplementationFlags { get { throw null; } } public override bool Equals(object obj) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.Reflection.MethodBase GetCurrentMethod() { throw null; } public virtual System.Type[] GetGenericArguments() { throw null; } public override int GetHashCode() { throw null; } public virtual System.Reflection.MethodBody GetMethodBody() { throw null; } public static System.Reflection.MethodBase GetMethodFromHandle(System.RuntimeMethodHandle handle) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static System.Reflection.MethodBase GetMethodFromHandle(System.RuntimeMethodHandle handle, System.RuntimeTypeHandle declaringType) { throw null; } public abstract System.Reflection.MethodImplAttributes GetMethodImplementationFlags(); public abstract System.Reflection.ParameterInfo[] GetParameters(); [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public object Invoke(object obj, object[] parameters) { throw null; } public abstract object Invoke(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture); public static bool operator ==(System.Reflection.MethodBase left, System.Reflection.MethodBase right) { throw null; } public static bool operator !=(System.Reflection.MethodBase left, System.Reflection.MethodBase right) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class MethodBody { protected MethodBody() { } public virtual System.Collections.Generic.IList ExceptionHandlingClauses { get { throw null; } } public virtual bool InitLocals { get { throw null; } } public virtual int LocalSignatureMetadataToken { get { throw null; } } public virtual System.Collections.Generic.IList LocalVariables { get { throw null; } } public virtual int MaxStackSize { get { throw null; } } public virtual byte[] GetILAsByteArray() { throw null; } } public enum MethodImplAttributes { AggressiveInlining = 256, CodeTypeMask = 3, ForwardRef = 16, IL = 0, InternalCall = 4096, Managed = 0, ManagedMask = 4, MaxMethodImplVal = 65535, Native = 1, NoInlining = 8, NoOptimization = 64, OPTIL = 2, PreserveSig = 128, Runtime = 3, Synchronized = 32, Unmanaged = 4, } public abstract partial class MethodInfo : System.Reflection.MethodBase { protected MethodInfo() { } public override System.Reflection.MemberTypes MemberType { get { throw null; } } public virtual System.Reflection.ParameterInfo ReturnParameter { get { throw null; } } public virtual System.Type ReturnType { get { throw null; } } public abstract System.Reflection.ICustomAttributeProvider ReturnTypeCustomAttributes { get; } public virtual System.Delegate CreateDelegate(System.Type delegateType) { throw null; } public virtual System.Delegate CreateDelegate(System.Type delegateType, object target) { throw null; } public override bool Equals(object obj) { throw null; } public abstract System.Reflection.MethodInfo GetBaseDefinition(); public override System.Type[] GetGenericArguments() { throw null; } public virtual System.Reflection.MethodInfo GetGenericMethodDefinition() { throw null; } public override int GetHashCode() { throw null; } public virtual System.Reflection.MethodInfo MakeGenericMethod(params System.Type[] typeArguments) { throw null; } public static bool operator ==(System.Reflection.MethodInfo left, System.Reflection.MethodInfo right) { throw null; } public static bool operator !=(System.Reflection.MethodInfo left, System.Reflection.MethodInfo right) { throw null; } } public static partial class MethodInfoExtensions { public static System.Reflection.MethodInfo GetBaseDefinition(System.Reflection.MethodInfo method) { throw null; } } public sealed partial class Missing : System.Runtime.Serialization.ISerializable { internal Missing() { } public static readonly System.Reflection.Missing Value; void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } public sealed partial class MissingMetadataException : System.TypeAccessException { public MissingMetadataException() { } public MissingMetadataException(string message) { } } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class Module : System.Reflection.ICustomAttributeProvider, System.Runtime.Serialization.ISerializable { public static readonly System.Reflection.TypeFilter FilterTypeName; public static readonly System.Reflection.TypeFilter FilterTypeNameIgnoreCase; protected Module() { } public virtual System.Reflection.Assembly Assembly { get { throw null; } } public virtual System.Collections.Generic.IEnumerable CustomAttributes { get { throw null; } } public virtual string FullyQualifiedName { get { throw null; } } public virtual int MDStreamVersion { get { throw null; } } public virtual int MetadataToken { get { throw null; } } public System.ModuleHandle ModuleHandle { get { throw null; } } public virtual System.Guid ModuleVersionId { get { throw null; } } public virtual string Name { get { throw null; } } public virtual string ScopeName { get { throw null; } } public override bool Equals(object o) { throw null; } public virtual System.Type[] FindTypes(System.Reflection.TypeFilter filter, object filterCriteria) { throw null; } public virtual object[] GetCustomAttributes(bool inherit) { throw null; } public virtual object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public virtual System.Collections.Generic.IList GetCustomAttributesData() { throw null; } public System.Reflection.FieldInfo GetField(string name) { throw null; } public virtual System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public System.Reflection.FieldInfo[] GetFields() { throw null; } public virtual System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingFlags) { throw null; } public override int GetHashCode() { throw null; } public System.Reflection.MethodInfo GetMethod(string name) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.MethodInfo GetMethod(string name, System.Type[] types) { throw null; } protected virtual System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public System.Reflection.MethodInfo[] GetMethods() { throw null; } public virtual System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingFlags) { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual void GetPEKind(out System.Reflection.PortableExecutableKinds peKind, out System.Reflection.ImageFileMachine machine) { throw null; } public virtual System.Security.Cryptography.X509Certificates.X509Certificate GetSignerCertificate() { throw null; } public virtual System.Type GetType(string className) { throw null; } public virtual System.Type GetType(string className, bool ignoreCase) { throw null; } public virtual System.Type GetType(string className, bool throwOnError, bool ignoreCase) { throw null; } public virtual System.Type[] GetTypes() { throw null; } public virtual bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public virtual bool IsResource() { throw null; } public static bool operator ==(System.Reflection.Module left, System.Reflection.Module right) { throw null; } public static bool operator !=(System.Reflection.Module left, System.Reflection.Module right) { throw null; } public System.Reflection.FieldInfo ResolveField(int metadataToken) { throw null; } public virtual System.Reflection.FieldInfo ResolveField(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } public System.Reflection.MemberInfo ResolveMember(int metadataToken) { throw null; } public virtual System.Reflection.MemberInfo ResolveMember(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } public System.Reflection.MethodBase ResolveMethod(int metadataToken) { throw null; } public virtual System.Reflection.MethodBase ResolveMethod(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } public virtual byte[] ResolveSignature(int metadataToken) { throw null; } public virtual string ResolveString(int metadataToken) { throw null; } public System.Type ResolveType(int metadataToken) { throw null; } public virtual System.Type ResolveType(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } public override string ToString() { throw null; } } public static partial class ModuleExtensions { public static System.Guid GetModuleVersionId(this System.Reflection.Module module) { throw null; } public static bool HasModuleVersionId(this System.Reflection.Module module) { throw null; } } public delegate System.Reflection.Module ModuleResolveEventHandler(object sender, System.ResolveEventArgs e); [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] public sealed partial class ObfuscateAssemblyAttribute : System.Attribute { public ObfuscateAssemblyAttribute(bool assemblyIsPrivate) { } public bool AssemblyIsPrivate { get { throw null; } } public bool StripAfterObfuscation { get { throw null; } set { } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Event | System.AttributeTargets.Field | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Parameter | System.AttributeTargets.Property | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] public sealed partial class ObfuscationAttribute : System.Attribute { public ObfuscationAttribute() { } public bool ApplyToMembers { get { throw null; } set { } } public bool Exclude { get { throw null; } set { } } public string Feature { get { throw null; } set { } } public bool StripAfterObfuscation { get { throw null; } set { } } } [System.FlagsAttribute] public enum ParameterAttributes { HasDefault = 4096, HasFieldMarshal = 8192, In = 1, Lcid = 4, None = 0, Optional = 16, Out = 2, Reserved3 = 16384, Reserved4 = 32768, ReservedMask = 61440, Retval = 8, } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class ParameterInfo : System.Reflection.ICustomAttributeProvider, System.Runtime.Serialization.IObjectReference { protected System.Reflection.ParameterAttributes AttrsImpl; protected System.Type ClassImpl; protected object DefaultValueImpl; protected System.Reflection.MemberInfo MemberImpl; protected string NameImpl; protected int PositionImpl; protected ParameterInfo() { } public virtual System.Reflection.ParameterAttributes Attributes { get { throw null; } } public virtual System.Collections.Generic.IEnumerable CustomAttributes { get { throw null; } } public virtual object DefaultValue { get { throw null; } } public virtual bool HasDefaultValue { get { throw null; } } public bool IsIn { get { throw null; } } public bool IsLcid { get { throw null; } } public bool IsOptional { get { throw null; } } public bool IsOut { get { throw null; } } public bool IsRetval { get { throw null; } } public virtual System.Reflection.MemberInfo Member { get { throw null; } } public virtual int MetadataToken { get { throw null; } } public virtual string Name { get { throw null; } } public virtual System.Type ParameterType { get { throw null; } } public virtual int Position { get { throw null; } } public virtual object RawDefaultValue { get { throw null; } } public virtual object[] GetCustomAttributes(bool inherit) { throw null; } public virtual object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public virtual System.Collections.Generic.IList GetCustomAttributesData() { throw null; } public virtual System.Type[] GetOptionalCustomModifiers() { throw null; } public object GetRealObject(System.Runtime.Serialization.StreamingContext context) { throw null; } public virtual System.Type[] GetRequiredCustomModifiers() { throw null; } public virtual bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ParameterModifier { private readonly object _dummy; public ParameterModifier(int parameterCount) { throw null; } public bool this[int index] { get { throw null; } set { } } } [System.CLSCompliantAttribute(false)] public sealed partial class Pointer : System.Runtime.Serialization.ISerializable { internal Pointer() { } public unsafe static object Box(void* ptr, System.Type type) { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public unsafe static void* Unbox(object ptr) { throw null; } } [System.FlagsAttribute] public enum PortableExecutableKinds { ILOnly = 1, NotAPortableExecutableImage = 0, PE32Plus = 4, Preferred32Bit = 16, Required32Bit = 2, Unmanaged32Bit = 8, } public enum ProcessorArchitecture { Amd64 = 4, Arm = 5, IA64 = 3, MSIL = 1, None = 0, X86 = 2, } [System.FlagsAttribute] public enum PropertyAttributes { HasDefault = 4096, None = 0, Reserved2 = 8192, Reserved3 = 16384, Reserved4 = 32768, ReservedMask = 62464, RTSpecialName = 1024, SpecialName = 512, } public abstract partial class PropertyInfo : System.Reflection.MemberInfo { protected PropertyInfo() { } public abstract System.Reflection.PropertyAttributes Attributes { get; } public abstract bool CanRead { get; } public abstract bool CanWrite { get; } public virtual System.Reflection.MethodInfo GetMethod { get { throw null; } } public bool IsSpecialName { get { throw null; } } public override System.Reflection.MemberTypes MemberType { get { throw null; } } public abstract System.Type PropertyType { get; } public virtual System.Reflection.MethodInfo SetMethod { get { throw null; } } public override bool Equals(object obj) { throw null; } public System.Reflection.MethodInfo[] GetAccessors() { throw null; } public abstract System.Reflection.MethodInfo[] GetAccessors(bool nonPublic); public virtual object GetConstantValue() { throw null; } public System.Reflection.MethodInfo GetGetMethod() { throw null; } public abstract System.Reflection.MethodInfo GetGetMethod(bool nonPublic); public override int GetHashCode() { throw null; } public abstract System.Reflection.ParameterInfo[] GetIndexParameters(); public virtual System.Type[] GetOptionalCustomModifiers() { throw null; } public virtual object GetRawConstantValue() { throw null; } public virtual System.Type[] GetRequiredCustomModifiers() { throw null; } public System.Reflection.MethodInfo GetSetMethod() { throw null; } public abstract System.Reflection.MethodInfo GetSetMethod(bool nonPublic); [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public object GetValue(object obj) { throw null; } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public virtual object GetValue(object obj, object[] index) { throw null; } public abstract object GetValue(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture); public static bool operator ==(System.Reflection.PropertyInfo left, System.Reflection.PropertyInfo right) { throw null; } public static bool operator !=(System.Reflection.PropertyInfo left, System.Reflection.PropertyInfo right) { throw null; } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public void SetValue(object obj, object value) { } [System.Diagnostics.DebuggerHiddenAttribute] [System.Diagnostics.DebuggerStepThroughAttribute] public virtual void SetValue(object obj, object value, object[] index) { } public abstract void SetValue(object obj, object value, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture); } public static partial class PropertyInfoExtensions { public static System.Reflection.MethodInfo[] GetAccessors(System.Reflection.PropertyInfo property) { throw null; } public static System.Reflection.MethodInfo[] GetAccessors(System.Reflection.PropertyInfo property, bool nonPublic) { throw null; } public static System.Reflection.MethodInfo GetGetMethod(System.Reflection.PropertyInfo property) { throw null; } public static System.Reflection.MethodInfo GetGetMethod(System.Reflection.PropertyInfo property, bool nonPublic) { throw null; } public static System.Reflection.MethodInfo GetSetMethod(System.Reflection.PropertyInfo property) { throw null; } public static System.Reflection.MethodInfo GetSetMethod(System.Reflection.PropertyInfo property, bool nonPublic) { throw null; } } public abstract partial class ReflectionContext { protected ReflectionContext() { } public virtual System.Reflection.TypeInfo GetTypeForObject(object value) { throw null; } public abstract System.Reflection.Assembly MapAssembly(System.Reflection.Assembly assembly); public abstract System.Reflection.TypeInfo MapType(System.Reflection.TypeInfo type); } [System.SerializableAttribute] public sealed partial class ReflectionTypeLoadException : System.SystemException, System.Runtime.Serialization.ISerializable { public ReflectionTypeLoadException(System.Type[] classes, System.Exception[] exceptions) { } public ReflectionTypeLoadException(System.Type[] classes, System.Exception[] exceptions, string message) { } public System.Exception[] LoaderExceptions { get { throw null; } } public override string Message { get { throw null; } } public System.Type[] Types { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } [System.FlagsAttribute] public enum ResourceAttributes { Private = 2, Public = 1, } [System.FlagsAttribute] public enum ResourceLocation { ContainedInAnotherAssembly = 2, ContainedInManifestFile = 4, Embedded = 1, } public static partial class RuntimeReflectionExtensions { public static System.Reflection.MethodInfo GetMethodInfo(this System.Delegate del) { throw null; } public static System.Reflection.MethodInfo GetRuntimeBaseDefinition(this System.Reflection.MethodInfo method) { throw null; } public static System.Reflection.EventInfo GetRuntimeEvent(this System.Type type, string name) { throw null; } public static System.Collections.Generic.IEnumerable GetRuntimeEvents(this System.Type type) { throw null; } public static System.Reflection.FieldInfo GetRuntimeField(this System.Type type, string name) { throw null; } public static System.Collections.Generic.IEnumerable GetRuntimeFields(this System.Type type) { throw null; } public static System.Reflection.InterfaceMapping GetRuntimeInterfaceMap(this System.Reflection.TypeInfo typeInfo, System.Type interfaceType) { throw null; } public static System.Reflection.MethodInfo GetRuntimeMethod(this System.Type type, string name, System.Type[] parameters) { throw null; } public static System.Collections.Generic.IEnumerable GetRuntimeMethods(this System.Type type) { throw null; } public static System.Collections.Generic.IEnumerable GetRuntimeProperties(this System.Type type) { throw null; } public static System.Reflection.PropertyInfo GetRuntimeProperty(this System.Type type, string name) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class StrongNameKeyPair : System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public StrongNameKeyPair(byte[] keyPairArray) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public StrongNameKeyPair(System.IO.FileStream keyPairFile) { } protected StrongNameKeyPair(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public StrongNameKeyPair(string keyPairContainer) { } public byte[] PublicKey { get { throw null; } } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.SerializableAttribute] public partial class TargetException : System.ApplicationException { public TargetException() { } protected TargetException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TargetException(string message) { } public TargetException(string message, System.Exception inner) { } } [System.SerializableAttribute] public sealed partial class TargetInvocationException : System.ApplicationException { public TargetInvocationException(System.Exception inner) { } public TargetInvocationException(string message, System.Exception inner) { } } [System.SerializableAttribute] public sealed partial class TargetParameterCountException : System.ApplicationException { public TargetParameterCountException() { } public TargetParameterCountException(string message) { } public TargetParameterCountException(string message, System.Exception inner) { } } [System.FlagsAttribute] public enum TypeAttributes { Abstract = 128, AnsiClass = 0, AutoClass = 131072, AutoLayout = 0, BeforeFieldInit = 1048576, Class = 0, ClassSemanticsMask = 32, CustomFormatClass = 196608, CustomFormatMask = 12582912, ExplicitLayout = 16, HasSecurity = 262144, Import = 4096, Interface = 32, LayoutMask = 24, NestedAssembly = 5, NestedFamANDAssem = 6, NestedFamily = 4, NestedFamORAssem = 7, NestedPrivate = 3, NestedPublic = 2, NotPublic = 0, Public = 1, ReservedMask = 264192, RTSpecialName = 2048, Sealed = 256, SequentialLayout = 8, Serializable = 8192, SpecialName = 1024, StringFormatMask = 196608, UnicodeClass = 65536, VisibilityMask = 7, WindowsRuntime = 16384, } public partial class TypeDelegator : System.Reflection.TypeInfo { protected System.Type typeImpl; protected TypeDelegator() { } public TypeDelegator(System.Type delegatingType) { } public override System.Reflection.Assembly Assembly { get { throw null; } } public override string AssemblyQualifiedName { get { throw null; } } public override System.Type BaseType { get { throw null; } } public override string FullName { get { throw null; } } public override System.Guid GUID { get { throw null; } } public override bool IsByRefLike { get { throw null; } } public override bool IsCollectible { get { throw null; } } public override bool IsConstructedGenericType { get { throw null; } } public override bool IsGenericMethodParameter { get { throw null; } } public override bool IsGenericTypeParameter { get { throw null; } } public override bool IsSZArray { get { throw null; } } public override bool IsTypeDefinition { get { throw null; } } public override int MetadataToken { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override string Namespace { get { throw null; } } public override System.RuntimeTypeHandle TypeHandle { get { throw null; } } public override System.Type UnderlyingSystemType { get { throw null; } } protected override System.Reflection.TypeAttributes GetAttributeFlagsImpl() { throw null; } protected override System.Reflection.ConstructorInfo GetConstructorImpl(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public override System.Reflection.ConstructorInfo[] GetConstructors(System.Reflection.BindingFlags bindingAttr) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public override System.Type GetElementType() { throw null; } public override System.Reflection.EventInfo GetEvent(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.EventInfo[] GetEvents() { throw null; } public override System.Reflection.EventInfo[] GetEvents(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type GetInterface(string name, bool ignoreCase) { throw null; } public override System.Reflection.InterfaceMapping GetInterfaceMap(System.Type interfaceType) { throw null; } public override System.Type[] GetInterfaces() { throw null; } public override System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.MemberTypes type, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr) { throw null; } protected override System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public override System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type GetNestedType(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type[] GetNestedTypes(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr) { throw null; } protected override System.Reflection.PropertyInfo GetPropertyImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } protected override bool HasElementTypeImpl() { throw null; } public override object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters) { throw null; } protected override bool IsArrayImpl() { throw null; } public override bool IsAssignableFrom(System.Reflection.TypeInfo typeInfo) { throw null; } protected override bool IsByRefImpl() { throw null; } protected override bool IsCOMObjectImpl() { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } protected override bool IsPointerImpl() { throw null; } protected override bool IsPrimitiveImpl() { throw null; } protected override bool IsValueTypeImpl() { throw null; } } public static partial class TypeExtensions { public static System.Reflection.ConstructorInfo GetConstructor(System.Type type, System.Type[] types) { throw null; } public static System.Reflection.ConstructorInfo[] GetConstructors(System.Type type) { throw null; } public static System.Reflection.ConstructorInfo[] GetConstructors(System.Type type, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.MemberInfo[] GetDefaultMembers(System.Type type) { throw null; } public static System.Reflection.EventInfo GetEvent(System.Type type, string name) { throw null; } public static System.Reflection.EventInfo GetEvent(System.Type type, string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.EventInfo[] GetEvents(System.Type type) { throw null; } public static System.Reflection.EventInfo[] GetEvents(System.Type type, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.FieldInfo GetField(System.Type type, string name) { throw null; } public static System.Reflection.FieldInfo GetField(System.Type type, string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.FieldInfo[] GetFields(System.Type type) { throw null; } public static System.Reflection.FieldInfo[] GetFields(System.Type type, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Type[] GetGenericArguments(System.Type type) { throw null; } public static System.Type[] GetInterfaces(System.Type type) { throw null; } public static System.Reflection.MemberInfo[] GetMember(System.Type type, string name) { throw null; } public static System.Reflection.MemberInfo[] GetMember(System.Type type, string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.MemberInfo[] GetMembers(System.Type type) { throw null; } public static System.Reflection.MemberInfo[] GetMembers(System.Type type, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.MethodInfo GetMethod(System.Type type, string name) { throw null; } public static System.Reflection.MethodInfo GetMethod(System.Type type, string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.MethodInfo GetMethod(System.Type type, string name, System.Type[] types) { throw null; } public static System.Reflection.MethodInfo[] GetMethods(System.Type type) { throw null; } public static System.Reflection.MethodInfo[] GetMethods(System.Type type, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Type GetNestedType(System.Type type, string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Type[] GetNestedTypes(System.Type type, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.PropertyInfo[] GetProperties(System.Type type) { throw null; } public static System.Reflection.PropertyInfo[] GetProperties(System.Type type, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.PropertyInfo GetProperty(System.Type type, string name) { throw null; } public static System.Reflection.PropertyInfo GetProperty(System.Type type, string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.PropertyInfo GetProperty(System.Type type, string name, System.Type returnType) { throw null; } public static System.Reflection.PropertyInfo GetProperty(System.Type type, string name, System.Type returnType, System.Type[] types) { throw null; } public static bool IsAssignableFrom(System.Type type, System.Type c) { throw null; } public static bool IsInstanceOfType(System.Type type, object o) { throw null; } } public delegate bool TypeFilter(System.Type m, object filterCriteria); public abstract partial class TypeInfo : System.Type, System.Reflection.IReflectableType { protected TypeInfo() { } public virtual System.Collections.Generic.IEnumerable DeclaredConstructors { get { throw null; } } public virtual System.Collections.Generic.IEnumerable DeclaredEvents { get { throw null; } } public virtual System.Collections.Generic.IEnumerable DeclaredFields { get { throw null; } } public virtual System.Collections.Generic.IEnumerable DeclaredMembers { get { throw null; } } public virtual System.Collections.Generic.IEnumerable DeclaredMethods { get { throw null; } } public virtual System.Collections.Generic.IEnumerable DeclaredNestedTypes { get { throw null; } } public virtual System.Collections.Generic.IEnumerable DeclaredProperties { get { throw null; } } public virtual System.Type[] GenericTypeParameters { get { throw null; } } public virtual System.Collections.Generic.IEnumerable ImplementedInterfaces { get { throw null; } } public virtual System.Type AsType() { throw null; } public virtual System.Reflection.EventInfo GetDeclaredEvent(string name) { throw null; } public virtual System.Reflection.FieldInfo GetDeclaredField(string name) { throw null; } public virtual System.Reflection.MethodInfo GetDeclaredMethod(string name) { throw null; } public virtual System.Collections.Generic.IEnumerable GetDeclaredMethods(string name) { throw null; } public virtual System.Reflection.TypeInfo GetDeclaredNestedType(string name) { throw null; } public virtual System.Reflection.PropertyInfo GetDeclaredProperty(string name) { throw null; } public virtual bool IsAssignableFrom(System.Reflection.TypeInfo typeInfo) { throw null; } System.Reflection.TypeInfo System.Reflection.IReflectableType.GetTypeInfo() { throw null; } } } namespace System.Reflection.Emit { [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._AssemblyBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class AssemblyBuilder : System.Reflection.Assembly, System.Runtime.InteropServices._AssemblyBuilder { internal AssemblyBuilder() { } public override string CodeBase { get { throw null; } } public override System.Reflection.MethodInfo EntryPoint { get { throw null; } } public override string EscapedCodeBase { get { throw null; } } public override System.Security.Policy.Evidence Evidence { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true)]get { throw null; } } public override string FullName { get { throw null; } } public override bool GlobalAssemblyCache { get { throw null; } } public override string ImageRuntimeVersion { get { throw null; } } public override bool IsDynamic { get { throw null; } } public override string Location { get { throw null; } } public override System.Reflection.Module ManifestModule { get { throw null; } } [System.MonoTODOAttribute] public override bool ReflectionOnly { get { throw null; } } public void AddResourceFile(string name, string fileName) { } public void AddResourceFile(string name, string fileName, System.Reflection.ResourceAttributes attribute) { } public static System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access) { throw null; } public static System.Reflection.Emit.AssemblyBuilder DefineDynamicAssembly(System.Reflection.AssemblyName name, System.Reflection.Emit.AssemblyBuilderAccess access, System.Collections.Generic.IEnumerable assemblyAttributes) { throw null; } public System.Reflection.Emit.ModuleBuilder DefineDynamicModule(string name) { throw null; } public System.Reflection.Emit.ModuleBuilder DefineDynamicModule(string name, bool emitSymbolInfo) { throw null; } public System.Reflection.Emit.ModuleBuilder DefineDynamicModule(string name, string fileName) { throw null; } public System.Reflection.Emit.ModuleBuilder DefineDynamicModule(string name, string fileName, bool emitSymbolInfo) { throw null; } public System.Resources.IResourceWriter DefineResource(string name, string description, string fileName) { throw null; } public System.Resources.IResourceWriter DefineResource(string name, string description, string fileName, System.Reflection.ResourceAttributes attribute) { throw null; } [System.MonoTODOAttribute("Not currently implemenented")] public void DefineUnmanagedResource(byte[] resource) { } public void DefineUnmanagedResource(string resourceFileName) { } public void DefineVersionInfoResource() { } public void DefineVersionInfoResource(string product, string productVersion, string company, string copyright, string trademark) { } public override bool Equals(object obj) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public System.Reflection.Emit.ModuleBuilder GetDynamicModule(string name) { throw null; } public override System.Type[] GetExportedTypes() { throw null; } public override System.IO.FileStream GetFile(string name) { throw null; } public override System.IO.FileStream[] GetFiles(bool getResourceModules) { throw null; } public override int GetHashCode() { throw null; } public override System.Reflection.Module[] GetLoadedModules(bool getResourceModules) { throw null; } public override System.Reflection.ManifestResourceInfo GetManifestResourceInfo(string resourceName) { throw null; } public override string[] GetManifestResourceNames() { throw null; } public override System.IO.Stream GetManifestResourceStream(string name) { throw null; } public override System.IO.Stream GetManifestResourceStream(System.Type type, string name) { throw null; } public override System.Reflection.Module GetModule(string name) { throw null; } public override System.Reflection.Module[] GetModules(bool getResourceModules) { throw null; } public override System.Reflection.AssemblyName GetName(bool copiedName) { throw null; } [System.MonoTODOAttribute("This always returns an empty array")] public override System.Reflection.AssemblyName[] GetReferencedAssemblies() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override System.Reflection.Assembly GetSatelliteAssembly(System.Globalization.CultureInfo culture) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public override System.Reflection.Assembly GetSatelliteAssembly(System.Globalization.CultureInfo culture, System.Version version) { throw null; } public override System.Type GetType(string name, bool throwOnError, bool ignoreCase) { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public void Save(string assemblyFileName) { } [System.MonoLimitationAttribute("No support for PE32+ assemblies for AMD64 and IA64")] public void Save(string assemblyFileName, System.Reflection.PortableExecutableKinds portableExecutableKind, System.Reflection.ImageFileMachine imageFileMachine) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } public void SetEntryPoint(System.Reflection.MethodInfo entryMethod) { } public void SetEntryPoint(System.Reflection.MethodInfo entryMethod, System.Reflection.Emit.PEFileKinds fileKind) { } void System.Runtime.InteropServices._AssemblyBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._AssemblyBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._AssemblyBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._AssemblyBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public override string ToString() { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum AssemblyBuilderAccess { ReflectionOnly = 6, Run = 1, RunAndCollect = 9, RunAndSave = 3, Save = 2, } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._ConstructorBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class ConstructorBuilder : System.Reflection.ConstructorInfo, System.Runtime.InteropServices._ConstructorBuilder { internal ConstructorBuilder() { } public override System.Reflection.MethodAttributes Attributes { get { throw null; } } [System.MonoTODOAttribute] public override System.Reflection.CallingConventions CallingConvention { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public bool InitLocals { get { throw null; } set { } } public override System.RuntimeMethodHandle MethodHandle { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } [System.ObsoleteAttribute] public System.Type ReturnType { get { throw null; } } public string Signature { get { throw null; } } public void AddDeclarativeSecurity(System.Security.Permissions.SecurityAction action, System.Security.PermissionSet pset) { } public System.Reflection.Emit.ParameterBuilder DefineParameter(int iSequence, System.Reflection.ParameterAttributes attributes, string strParamName) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public System.Reflection.Emit.ILGenerator GetILGenerator() { throw null; } public System.Reflection.Emit.ILGenerator GetILGenerator(int streamSize) { throw null; } public override System.Reflection.MethodImplAttributes GetMethodImplementationFlags() { throw null; } public System.Reflection.Module GetModule() { throw null; } public override System.Reflection.ParameterInfo[] GetParameters() { throw null; } public System.Reflection.Emit.MethodToken GetToken() { throw null; } public override object Invoke(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture) { throw null; } public override object Invoke(System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture) { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } public void SetImplementationFlags(System.Reflection.MethodImplAttributes attributes) { } public void SetMethodBody(byte[] il, int maxStack, byte[] localSignature, System.Collections.Generic.IEnumerable exceptionHandlers, System.Collections.Generic.IEnumerable tokenFixups) { } [System.MonoTODOAttribute] public void SetSymCustomAttribute(string name, byte[] data) { } void System.Runtime.InteropServices._ConstructorBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._ConstructorBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._ConstructorBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._ConstructorBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._CustomAttributeBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class CustomAttributeBuilder : System.Runtime.InteropServices._CustomAttributeBuilder { public CustomAttributeBuilder(System.Reflection.ConstructorInfo con, object[] constructorArgs) { } public CustomAttributeBuilder(System.Reflection.ConstructorInfo con, object[] constructorArgs, System.Reflection.FieldInfo[] namedFields, object[] fieldValues) { } public CustomAttributeBuilder(System.Reflection.ConstructorInfo con, object[] constructorArgs, System.Reflection.PropertyInfo[] namedProperties, object[] propertyValues) { } public CustomAttributeBuilder(System.Reflection.ConstructorInfo con, object[] constructorArgs, System.Reflection.PropertyInfo[] namedProperties, object[] propertyValues, System.Reflection.FieldInfo[] namedFields, object[] fieldValues) { } void System.Runtime.InteropServices._CustomAttributeBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._CustomAttributeBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._CustomAttributeBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._CustomAttributeBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class DynamicILInfo { internal DynamicILInfo() { } public System.Reflection.Emit.DynamicMethod DynamicMethod { get { throw null; } } [System.MonoTODOAttribute] public int GetTokenFor(byte[] signature) { throw null; } public int GetTokenFor(System.Reflection.Emit.DynamicMethod method) { throw null; } public int GetTokenFor(System.RuntimeFieldHandle field) { throw null; } [System.MonoTODOAttribute] public int GetTokenFor(System.RuntimeFieldHandle field, System.RuntimeTypeHandle contextType) { throw null; } public int GetTokenFor(System.RuntimeMethodHandle method) { throw null; } [System.MonoTODOAttribute] public int GetTokenFor(System.RuntimeMethodHandle method, System.RuntimeTypeHandle contextType) { throw null; } public int GetTokenFor(System.RuntimeTypeHandle type) { throw null; } public int GetTokenFor(string literal) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe void SetCode(byte* code, int codeSize, int maxStackSize) { } public void SetCode(byte[] code, int maxStackSize) { } [System.CLSCompliantAttribute(false)] [System.MonoTODOAttribute] public unsafe void SetExceptions(byte* exceptions, int exceptionsSize) { } [System.MonoTODOAttribute] public void SetExceptions(byte[] exceptions) { } [System.CLSCompliantAttribute(false)] public unsafe void SetLocalSignature(byte* localSignature, int signatureSize) { } [System.MonoTODOAttribute] public void SetLocalSignature(byte[] localSignature) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class DynamicMethod : System.Reflection.MethodInfo { public DynamicMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Reflection.Module m, bool skipVisibility) { } public DynamicMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Type owner, bool skipVisibility) { } public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes) { } [System.MonoTODOAttribute("Visibility is not restricted")] public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, bool restrictedSkipVisibility) { } public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Reflection.Module m) { } public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Reflection.Module m, bool skipVisibility) { } public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Type owner) { } public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Type owner, bool skipVisibility) { } public override System.Reflection.MethodAttributes Attributes { get { throw null; } } public override System.Reflection.CallingConventions CallingConvention { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public bool InitLocals { get { throw null; } set { } } public override System.RuntimeMethodHandle MethodHandle { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } [System.MonoTODOAttribute("Not implemented")] public override System.Reflection.ParameterInfo ReturnParameter { get { throw null; } } public override System.Type ReturnType { get { throw null; } } [System.MonoTODOAttribute("Not implemented")] public override System.Reflection.ICustomAttributeProvider ReturnTypeCustomAttributes { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed override System.Delegate CreateDelegate(System.Type delegateType) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed override System.Delegate CreateDelegate(System.Type delegateType, object target) { throw null; } public System.Reflection.Emit.ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string parameterName) { throw null; } public override System.Reflection.MethodInfo GetBaseDefinition() { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public System.Reflection.Emit.DynamicILInfo GetDynamicILInfo() { throw null; } public System.Reflection.Emit.ILGenerator GetILGenerator() { throw null; } public System.Reflection.Emit.ILGenerator GetILGenerator(int streamSize) { throw null; } public override System.Reflection.MethodImplAttributes GetMethodImplementationFlags() { throw null; } public override System.Reflection.ParameterInfo[] GetParameters() { throw null; } public override object Invoke(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture) { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._EnumBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class EnumBuilder : System.Reflection.TypeInfo, System.Runtime.InteropServices._EnumBuilder { internal EnumBuilder() { } public override System.Reflection.Assembly Assembly { get { throw null; } } public override string AssemblyQualifiedName { get { throw null; } } public override System.Type BaseType { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public override string FullName { get { throw null; } } public override System.Guid GUID { get { throw null; } } public override bool IsConstructedGenericType { get { throw null; } } public override bool IsTypeDefinition { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override string Namespace { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } public override System.RuntimeTypeHandle TypeHandle { get { throw null; } } public System.Reflection.Emit.TypeToken TypeToken { get { throw null; } } public System.Reflection.Emit.FieldBuilder UnderlyingField { get { throw null; } } public override System.Type UnderlyingSystemType { get { throw null; } } public System.Type CreateType() { throw null; } public System.Reflection.TypeInfo CreateTypeInfo() { throw null; } public System.Reflection.Emit.FieldBuilder DefineLiteral(string literalName, object literalValue) { throw null; } protected override System.Reflection.TypeAttributes GetAttributeFlagsImpl() { throw null; } protected override System.Reflection.ConstructorInfo GetConstructorImpl(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Reflection.ConstructorInfo[] GetConstructors(System.Reflection.BindingFlags bindingAttr) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public override System.Type GetElementType() { throw null; } public override System.Type GetEnumUnderlyingType() { throw null; } public override System.Reflection.EventInfo GetEvent(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.EventInfo[] GetEvents() { throw null; } public override System.Reflection.EventInfo[] GetEvents(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type GetInterface(string name, bool ignoreCase) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Reflection.InterfaceMapping GetInterfaceMap(System.Type interfaceType) { throw null; } public override System.Type[] GetInterfaces() { throw null; } public override System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.MemberTypes type, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr) { throw null; } protected override System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public override System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type GetNestedType(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type[] GetNestedTypes(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr) { throw null; } protected override System.Reflection.PropertyInfo GetPropertyImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } protected override bool HasElementTypeImpl() { throw null; } public override object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters) { throw null; } protected override bool IsArrayImpl() { throw null; } public override bool IsAssignableFrom(System.Reflection.TypeInfo typeInfo) { throw null; } protected override bool IsByRefImpl() { throw null; } protected override bool IsCOMObjectImpl() { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } protected override bool IsPointerImpl() { throw null; } protected override bool IsPrimitiveImpl() { throw null; } protected override bool IsValueTypeImpl() { throw null; } public override System.Type MakeArrayType() { throw null; } public override System.Type MakeArrayType(int rank) { throw null; } public override System.Type MakeByRefType() { throw null; } public override System.Type MakePointerType() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } void System.Runtime.InteropServices._EnumBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._EnumBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._EnumBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._EnumBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._EventBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class EventBuilder : System.Runtime.InteropServices._EventBuilder { internal EventBuilder() { } public void AddOtherMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { } public System.Reflection.Emit.EventToken GetEventToken() { throw null; } public void SetAddOnMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } public void SetRaiseMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { } public void SetRemoveOnMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { } void System.Runtime.InteropServices._EventBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._EventBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._EventBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._EventBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct EventToken : System.IEquatable { private readonly int _dummyPrimitive; public static readonly System.Reflection.Emit.EventToken Empty; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.EventToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.EventToken a, System.Reflection.Emit.EventToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.EventToken a, System.Reflection.Emit.EventToken b) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ExceptionHandler : System.IEquatable { private readonly int _dummyPrimitive; public ExceptionHandler(int tryOffset, int tryLength, int filterOffset, int handlerOffset, int handlerLength, System.Reflection.ExceptionHandlingClauseOptions kind, int exceptionTypeToken) { throw null; } public int ExceptionTypeToken { get { throw null; } } public int FilterOffset { get { throw null; } } public int HandlerLength { get { throw null; } } public int HandlerOffset { get { throw null; } } public System.Reflection.ExceptionHandlingClauseOptions Kind { get { throw null; } } public int TryLength { get { throw null; } } public int TryOffset { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.ExceptionHandler other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.ExceptionHandler left, System.Reflection.Emit.ExceptionHandler right) { throw null; } public static bool operator !=(System.Reflection.Emit.ExceptionHandler left, System.Reflection.Emit.ExceptionHandler right) { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._FieldBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class FieldBuilder : System.Reflection.FieldInfo, System.Runtime.InteropServices._FieldBuilder { internal FieldBuilder() { } public override System.Reflection.FieldAttributes Attributes { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public override System.RuntimeFieldHandle FieldHandle { get { throw null; } } public override System.Type FieldType { get { throw null; } } public override int MetadataToken { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public System.Reflection.Emit.FieldToken GetToken() { throw null; } public override object GetValue(object obj) { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public void SetConstant(object defaultValue) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } [System.ObsoleteAttribute("An alternate API is available: Emit the MarshalAs custom attribute instead.")] public void SetMarshal(System.Reflection.Emit.UnmanagedMarshal unmanagedMarshal) { } public void SetOffset(int iOffset) { } public override void SetValue(object obj, object val, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Globalization.CultureInfo culture) { } void System.Runtime.InteropServices._FieldBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._FieldBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._FieldBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._FieldBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct FieldToken : System.IEquatable { private readonly int _dummyPrimitive; public static readonly System.Reflection.Emit.FieldToken Empty; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.FieldToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.FieldToken a, System.Reflection.Emit.FieldToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.FieldToken a, System.Reflection.Emit.FieldToken b) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum FlowControl { Branch = 0, Break = 1, Call = 2, Cond_Branch = 3, Meta = 4, Next = 5, [System.ObsoleteAttribute("This API has been deprecated.")] Phi = 6, Return = 7, Throw = 8, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class GenericTypeParameterBuilder : System.Reflection.TypeInfo { internal GenericTypeParameterBuilder() { } public override System.Reflection.Assembly Assembly { get { throw null; } } public override string AssemblyQualifiedName { get { throw null; } } public override System.Type BaseType { get { throw null; } } public override bool ContainsGenericParameters { get { throw null; } } public override System.Reflection.MethodBase DeclaringMethod { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public override string FullName { get { throw null; } } public override System.Reflection.GenericParameterAttributes GenericParameterAttributes { get { throw null; } } public override int GenericParameterPosition { get { throw null; } } public override System.Guid GUID { get { throw null; } } public override bool IsGenericParameter { get { throw null; } } public override bool IsGenericType { get { throw null; } } public override bool IsGenericTypeDefinition { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override string Namespace { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } public override System.RuntimeTypeHandle TypeHandle { get { throw null; } } public override System.Type UnderlyingSystemType { get { throw null; } } [System.MonoTODOAttribute] public override bool Equals(object o) { throw null; } protected override System.Reflection.TypeAttributes GetAttributeFlagsImpl() { throw null; } protected override System.Reflection.ConstructorInfo GetConstructorImpl(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Reflection.ConstructorInfo[] GetConstructors(System.Reflection.BindingFlags bindingAttr) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public override System.Type GetElementType() { throw null; } public override System.Reflection.EventInfo GetEvent(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.EventInfo[] GetEvents() { throw null; } public override System.Reflection.EventInfo[] GetEvents(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type[] GetGenericArguments() { throw null; } public override System.Type[] GetGenericParameterConstraints() { throw null; } public override System.Type GetGenericTypeDefinition() { throw null; } [System.MonoTODOAttribute] public override int GetHashCode() { throw null; } public override System.Type GetInterface(string name, bool ignoreCase) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Reflection.InterfaceMapping GetInterfaceMap(System.Type interfaceType) { throw null; } public override System.Type[] GetInterfaces() { throw null; } public override System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.MemberTypes type, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr) { throw null; } protected override System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public override System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type GetNestedType(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type[] GetNestedTypes(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr) { throw null; } protected override System.Reflection.PropertyInfo GetPropertyImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } protected override bool HasElementTypeImpl() { throw null; } public override object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters) { throw null; } protected override bool IsArrayImpl() { throw null; } public override bool IsAssignableFrom(System.Reflection.TypeInfo typeInfo) { throw null; } public override bool IsAssignableFrom(System.Type c) { throw null; } protected override bool IsByRefImpl() { throw null; } protected override bool IsCOMObjectImpl() { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public override bool IsInstanceOfType(object o) { throw null; } protected override bool IsPointerImpl() { throw null; } protected override bool IsPrimitiveImpl() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override bool IsSubclassOf(System.Type c) { throw null; } protected override bool IsValueTypeImpl() { throw null; } public override System.Type MakeArrayType() { throw null; } public override System.Type MakeArrayType(int rank) { throw null; } public override System.Type MakeByRefType() { throw null; } public override System.Type MakeGenericType(params System.Type[] typeArguments) { throw null; } public override System.Type MakePointerType() { throw null; } public void SetBaseTypeConstraint(System.Type baseTypeConstraint) { } [System.MonoTODOAttribute("unverified implementation")] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } public void SetGenericParameterAttributes(System.Reflection.GenericParameterAttributes genericParameterAttributes) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetInterfaceConstraints(params System.Type[] interfaceConstraints) { } public override string ToString() { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class ILGenerator : System.Runtime.InteropServices._ILGenerator { internal ILGenerator() { } public virtual int ILOffset { get { throw null; } } public virtual void BeginCatchBlock(System.Type exceptionType) { } public virtual void BeginExceptFilterBlock() { } public virtual System.Reflection.Emit.Label BeginExceptionBlock() { throw null; } public virtual void BeginFaultBlock() { } public virtual void BeginFinallyBlock() { } public virtual void BeginScope() { } public virtual System.Reflection.Emit.LocalBuilder DeclareLocal(System.Type localType) { throw null; } public virtual System.Reflection.Emit.LocalBuilder DeclareLocal(System.Type localType, bool pinned) { throw null; } public virtual System.Reflection.Emit.Label DefineLabel() { throw null; } public virtual void Emit(System.Reflection.Emit.OpCode opcode) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, byte arg) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, double arg) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, short arg) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, int arg) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, long arg) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Reflection.ConstructorInfo con) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Reflection.Emit.Label label) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Reflection.Emit.Label[] labels) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Reflection.Emit.LocalBuilder local) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Reflection.Emit.SignatureHelper signature) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Reflection.FieldInfo field) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Reflection.MethodInfo meth) { } [System.CLSCompliantAttribute(false)] public void Emit(System.Reflection.Emit.OpCode opcode, sbyte arg) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, float arg) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, string str) { } public virtual void Emit(System.Reflection.Emit.OpCode opcode, System.Type cls) { } [System.MonoLimitationAttribute("vararg methods are not supported")] public virtual void EmitCall(System.Reflection.Emit.OpCode opcode, System.Reflection.MethodInfo methodInfo, System.Type[] optionalParameterTypes) { } public virtual void EmitCalli(System.Reflection.Emit.OpCode opcode, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Type[] optionalParameterTypes) { } public virtual void EmitCalli(System.Reflection.Emit.OpCode opcode, System.Runtime.InteropServices.CallingConvention unmanagedCallConv, System.Type returnType, System.Type[] parameterTypes) { } public virtual void EmitWriteLine(System.Reflection.Emit.LocalBuilder localBuilder) { } public virtual void EmitWriteLine(System.Reflection.FieldInfo fld) { } public virtual void EmitWriteLine(string value) { } public virtual void EndExceptionBlock() { } public virtual void EndScope() { } public virtual void MarkLabel(System.Reflection.Emit.Label loc) { } public virtual void MarkSequencePoint(System.Diagnostics.SymbolStore.ISymbolDocumentWriter document, int startLine, int startColumn, int endLine, int endColumn) { } void System.Runtime.InteropServices._ILGenerator.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._ILGenerator.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._ILGenerator.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._ILGenerator.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public virtual void ThrowException(System.Type excType) { } [System.MonoTODOAttribute("Not implemented")] public virtual void UsingNamespace(string usingNamespace) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct Label : System.IEquatable { private readonly int _dummyPrimitive; public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.Label obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.Label a, System.Reflection.Emit.Label b) { throw null; } public static bool operator !=(System.Reflection.Emit.Label a, System.Reflection.Emit.Label b) { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._LocalBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class LocalBuilder : System.Reflection.LocalVariableInfo, System.Runtime.InteropServices._LocalBuilder { internal LocalBuilder() { } public override bool IsPinned { get { throw null; } } public override int LocalIndex { get { throw null; } } public override System.Type LocalType { get { throw null; } } public void SetLocalSymInfo(string name) { } public void SetLocalSymInfo(string name, int startOffset, int endOffset) { } void System.Runtime.InteropServices._LocalBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._LocalBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._LocalBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._LocalBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._MethodBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class MethodBuilder : System.Reflection.MethodInfo, System.Runtime.InteropServices._MethodBuilder { internal MethodBuilder() { } public override System.Reflection.MethodAttributes Attributes { get { throw null; } } public override System.Reflection.CallingConventions CallingConvention { get { throw null; } } public override bool ContainsGenericParameters { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public bool InitLocals { get { throw null; } set { } } public override bool IsGenericMethod { get { throw null; } } public override bool IsGenericMethodDefinition { get { throw null; } } public override System.RuntimeMethodHandle MethodHandle { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } public override System.Reflection.ParameterInfo ReturnParameter { get { throw null; } } public override System.Type ReturnType { get { throw null; } } public override System.Reflection.ICustomAttributeProvider ReturnTypeCustomAttributes { get { throw null; } } [System.MonoTODOAttribute("Not implemented")] public string Signature { get { throw null; } } public void AddDeclarativeSecurity(System.Security.Permissions.SecurityAction action, System.Security.PermissionSet pset) { } public void CreateMethodBody(byte[] il, int count) { } public System.Reflection.Emit.GenericTypeParameterBuilder[] DefineGenericParameters(params string[] names) { throw null; } public System.Reflection.Emit.ParameterBuilder DefineParameter(int position, System.Reflection.ParameterAttributes attributes, string strParamName) { throw null; } [System.MonoTODOAttribute] public override bool Equals(object obj) { throw null; } public override System.Reflection.MethodInfo GetBaseDefinition() { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public override System.Type[] GetGenericArguments() { throw null; } public override System.Reflection.MethodInfo GetGenericMethodDefinition() { throw null; } public override int GetHashCode() { throw null; } public System.Reflection.Emit.ILGenerator GetILGenerator() { throw null; } public System.Reflection.Emit.ILGenerator GetILGenerator(int size) { throw null; } public override System.Reflection.MethodImplAttributes GetMethodImplementationFlags() { throw null; } public System.Reflection.Module GetModule() { throw null; } public override System.Reflection.ParameterInfo[] GetParameters() { throw null; } public System.Reflection.Emit.MethodToken GetToken() { throw null; } public override object Invoke(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture) { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public override System.Reflection.MethodInfo MakeGenericMethod(params System.Type[] typeArguments) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } public void SetImplementationFlags(System.Reflection.MethodImplAttributes attributes) { } [System.ObsoleteAttribute("An alternate API is available: Emit the MarshalAs custom attribute instead.")] public void SetMarshal(System.Reflection.Emit.UnmanagedMarshal unmanagedMarshal) { } public void SetMethodBody(byte[] il, int maxStack, byte[] localSignature, System.Collections.Generic.IEnumerable exceptionHandlers, System.Collections.Generic.IEnumerable tokenFixups) { } public void SetParameters(params System.Type[] parameterTypes) { } public void SetReturnType(System.Type returnType) { } public void SetSignature(System.Type returnType, System.Type[] returnTypeRequiredCustomModifiers, System.Type[] returnTypeOptionalCustomModifiers, System.Type[] parameterTypes, System.Type[][] parameterTypeRequiredCustomModifiers, System.Type[][] parameterTypeOptionalCustomModifiers) { } [System.MonoTODOAttribute] public void SetSymCustomAttribute(string name, byte[] data) { } void System.Runtime.InteropServices._MethodBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._MethodBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._MethodBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._MethodBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._MethodRental))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class MethodRental : System.Runtime.InteropServices._MethodRental { internal MethodRental() { } public const int JitImmediate = 1; public const int JitOnDemand = 0; [System.MonoTODOAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)] public static void SwapMethodBody(System.Type cls, int methodtoken, System.IntPtr rgIL, int methodSize, int flags) { } void System.Runtime.InteropServices._MethodRental.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._MethodRental.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._MethodRental.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._MethodRental.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct MethodToken : System.IEquatable { private readonly int _dummyPrimitive; public static readonly System.Reflection.Emit.MethodToken Empty; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.MethodToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.MethodToken a, System.Reflection.Emit.MethodToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.MethodToken a, System.Reflection.Emit.MethodToken b) { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._ModuleBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class ModuleBuilder : System.Reflection.Module, System.Runtime.InteropServices._ModuleBuilder { internal ModuleBuilder() { } public override System.Reflection.Assembly Assembly { get { throw null; } } public override string FullyQualifiedName { get { throw null; } } public override int MetadataToken { get { throw null; } } public override System.Guid ModuleVersionId { get { throw null; } } public override string Name { get { throw null; } } public override string ScopeName { get { throw null; } } public void CreateGlobalFunctions() { } public System.Diagnostics.SymbolStore.ISymbolDocumentWriter DefineDocument(string url, System.Guid language, System.Guid languageVendor, System.Guid documentType) { throw null; } public System.Reflection.Emit.EnumBuilder DefineEnum(string name, System.Reflection.TypeAttributes visibility, System.Type underlyingType) { throw null; } public System.Reflection.Emit.MethodBuilder DefineGlobalMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes) { throw null; } public System.Reflection.Emit.MethodBuilder DefineGlobalMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] requiredReturnTypeCustomModifiers, System.Type[] optionalReturnTypeCustomModifiers, System.Type[] parameterTypes, System.Type[][] requiredParameterTypeCustomModifiers, System.Type[][] optionalParameterTypeCustomModifiers) { throw null; } public System.Reflection.Emit.MethodBuilder DefineGlobalMethod(string name, System.Reflection.MethodAttributes attributes, System.Type returnType, System.Type[] parameterTypes) { throw null; } public System.Reflection.Emit.FieldBuilder DefineInitializedData(string name, byte[] data, System.Reflection.FieldAttributes attributes) { throw null; } public void DefineManifestResource(string name, System.IO.Stream stream, System.Reflection.ResourceAttributes attribute) { } public System.Reflection.Emit.MethodBuilder DefinePInvokeMethod(string name, string dllName, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Runtime.InteropServices.CallingConvention nativeCallConv, System.Runtime.InteropServices.CharSet nativeCharSet) { throw null; } public System.Reflection.Emit.MethodBuilder DefinePInvokeMethod(string name, string dllName, string entryName, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Runtime.InteropServices.CallingConvention nativeCallConv, System.Runtime.InteropServices.CharSet nativeCharSet) { throw null; } public System.Resources.IResourceWriter DefineResource(string name, string description) { throw null; } public System.Resources.IResourceWriter DefineResource(string name, string description, System.Reflection.ResourceAttributes attribute) { throw null; } public System.Reflection.Emit.TypeBuilder DefineType(string name) { throw null; } public System.Reflection.Emit.TypeBuilder DefineType(string name, System.Reflection.TypeAttributes attr) { throw null; } public System.Reflection.Emit.TypeBuilder DefineType(string name, System.Reflection.TypeAttributes attr, System.Type parent) { throw null; } public System.Reflection.Emit.TypeBuilder DefineType(string name, System.Reflection.TypeAttributes attr, System.Type parent, int typesize) { throw null; } public System.Reflection.Emit.TypeBuilder DefineType(string name, System.Reflection.TypeAttributes attr, System.Type parent, System.Reflection.Emit.PackingSize packsize) { throw null; } public System.Reflection.Emit.TypeBuilder DefineType(string name, System.Reflection.TypeAttributes attr, System.Type parent, System.Reflection.Emit.PackingSize packingSize, int typesize) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Reflection.Emit.TypeBuilder DefineType(string name, System.Reflection.TypeAttributes attr, System.Type parent, System.Type[] interfaces) { throw null; } public System.Reflection.Emit.FieldBuilder DefineUninitializedData(string name, int size, System.Reflection.FieldAttributes attributes) { throw null; } [System.MonoTODOAttribute] public void DefineUnmanagedResource(byte[] resource) { } [System.MonoTODOAttribute] public void DefineUnmanagedResource(string resourceFileName) { } public override bool Equals(object obj) { throw null; } public System.Reflection.MethodInfo GetArrayMethod(System.Type arrayClass, string methodName, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes) { throw null; } public System.Reflection.Emit.MethodToken GetArrayMethodToken(System.Type arrayClass, string methodName, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Reflection.Emit.MethodToken GetConstructorToken(System.Reflection.ConstructorInfo con) { throw null; } public System.Reflection.Emit.MethodToken GetConstructorToken(System.Reflection.ConstructorInfo constructor, System.Collections.Generic.IEnumerable optionalParameterTypes) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public override System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingFlags) { throw null; } public System.Reflection.Emit.FieldToken GetFieldToken(System.Reflection.FieldInfo field) { throw null; } public override int GetHashCode() { throw null; } protected override System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public override System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingFlags) { throw null; } public System.Reflection.Emit.MethodToken GetMethodToken(System.Reflection.MethodInfo method) { throw null; } public System.Reflection.Emit.MethodToken GetMethodToken(System.Reflection.MethodInfo method, System.Collections.Generic.IEnumerable optionalParameterTypes) { throw null; } [System.MonoTODOAttribute] public System.Reflection.Emit.SignatureToken GetSignatureToken(byte[] sigBytes, int sigLength) { throw null; } public System.Reflection.Emit.SignatureToken GetSignatureToken(System.Reflection.Emit.SignatureHelper sigHelper) { throw null; } public System.Reflection.Emit.StringToken GetStringConstant(string str) { throw null; } public System.Diagnostics.SymbolStore.ISymbolWriter GetSymWriter() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Type GetType(string className) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Type GetType(string className, bool ignoreCase) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Type GetType(string className, bool throwOnError, bool ignoreCase) { throw null; } public override System.Type[] GetTypes() { throw null; } public System.Reflection.Emit.TypeToken GetTypeToken(string name) { throw null; } public System.Reflection.Emit.TypeToken GetTypeToken(System.Type type) { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public override bool IsResource() { throw null; } public bool IsTransient() { throw null; } public override System.Reflection.FieldInfo ResolveField(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } public override System.Reflection.MemberInfo ResolveMember(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } public override System.Reflection.MethodBase ResolveMethod(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } public override byte[] ResolveSignature(int metadataToken) { throw null; } public override string ResolveString(int metadataToken) { throw null; } public override System.Type ResolveType(int metadataToken, System.Type[] genericTypeArguments, System.Type[] genericMethodArguments) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } [System.MonoTODOAttribute] public void SetSymCustomAttribute(string name, byte[] data) { } [System.MonoTODOAttribute] public void SetUserEntryPoint(System.Reflection.MethodInfo entryPoint) { } void System.Runtime.InteropServices._ModuleBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._ModuleBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._ModuleBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._ModuleBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct OpCode : System.IEquatable { private readonly int _dummyPrimitive; public System.Reflection.Emit.FlowControl FlowControl { get { throw null; } } public string Name { get { throw null; } } public System.Reflection.Emit.OpCodeType OpCodeType { get { throw null; } } public System.Reflection.Emit.OperandType OperandType { get { throw null; } } public int Size { get { throw null; } } public System.Reflection.Emit.StackBehaviour StackBehaviourPop { get { throw null; } } public System.Reflection.Emit.StackBehaviour StackBehaviourPush { get { throw null; } } public short Value { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.OpCode obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.OpCode a, System.Reflection.Emit.OpCode b) { throw null; } public static bool operator !=(System.Reflection.Emit.OpCode a, System.Reflection.Emit.OpCode b) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class OpCodes { internal OpCodes() { } public static readonly System.Reflection.Emit.OpCode Add; public static readonly System.Reflection.Emit.OpCode Add_Ovf; public static readonly System.Reflection.Emit.OpCode Add_Ovf_Un; public static readonly System.Reflection.Emit.OpCode And; public static readonly System.Reflection.Emit.OpCode Arglist; public static readonly System.Reflection.Emit.OpCode Beq; public static readonly System.Reflection.Emit.OpCode Beq_S; public static readonly System.Reflection.Emit.OpCode Bge; public static readonly System.Reflection.Emit.OpCode Bge_S; public static readonly System.Reflection.Emit.OpCode Bge_Un; public static readonly System.Reflection.Emit.OpCode Bge_Un_S; public static readonly System.Reflection.Emit.OpCode Bgt; public static readonly System.Reflection.Emit.OpCode Bgt_S; public static readonly System.Reflection.Emit.OpCode Bgt_Un; public static readonly System.Reflection.Emit.OpCode Bgt_Un_S; public static readonly System.Reflection.Emit.OpCode Ble; public static readonly System.Reflection.Emit.OpCode Ble_S; public static readonly System.Reflection.Emit.OpCode Ble_Un; public static readonly System.Reflection.Emit.OpCode Ble_Un_S; public static readonly System.Reflection.Emit.OpCode Blt; public static readonly System.Reflection.Emit.OpCode Blt_S; public static readonly System.Reflection.Emit.OpCode Blt_Un; public static readonly System.Reflection.Emit.OpCode Blt_Un_S; public static readonly System.Reflection.Emit.OpCode Bne_Un; public static readonly System.Reflection.Emit.OpCode Bne_Un_S; public static readonly System.Reflection.Emit.OpCode Box; public static readonly System.Reflection.Emit.OpCode Br; public static readonly System.Reflection.Emit.OpCode Break; public static readonly System.Reflection.Emit.OpCode Brfalse; public static readonly System.Reflection.Emit.OpCode Brfalse_S; public static readonly System.Reflection.Emit.OpCode Brtrue; public static readonly System.Reflection.Emit.OpCode Brtrue_S; public static readonly System.Reflection.Emit.OpCode Br_S; public static readonly System.Reflection.Emit.OpCode Call; public static readonly System.Reflection.Emit.OpCode Calli; public static readonly System.Reflection.Emit.OpCode Callvirt; [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static readonly System.Reflection.Emit.OpCode Castclass; public static readonly System.Reflection.Emit.OpCode Ceq; public static readonly System.Reflection.Emit.OpCode Cgt; public static readonly System.Reflection.Emit.OpCode Cgt_Un; public static readonly System.Reflection.Emit.OpCode Ckfinite; public static readonly System.Reflection.Emit.OpCode Clt; public static readonly System.Reflection.Emit.OpCode Clt_Un; public static readonly System.Reflection.Emit.OpCode Constrained; public static readonly System.Reflection.Emit.OpCode Conv_I; public static readonly System.Reflection.Emit.OpCode Conv_I1; public static readonly System.Reflection.Emit.OpCode Conv_I2; public static readonly System.Reflection.Emit.OpCode Conv_I4; public static readonly System.Reflection.Emit.OpCode Conv_I8; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I1; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I1_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I2; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I2_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I4; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I4_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I8; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I8_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_I_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U1; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U1_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U2; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U2_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U4; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U4_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U8; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U8_Un; public static readonly System.Reflection.Emit.OpCode Conv_Ovf_U_Un; public static readonly System.Reflection.Emit.OpCode Conv_R4; public static readonly System.Reflection.Emit.OpCode Conv_R8; public static readonly System.Reflection.Emit.OpCode Conv_R_Un; public static readonly System.Reflection.Emit.OpCode Conv_U; public static readonly System.Reflection.Emit.OpCode Conv_U1; public static readonly System.Reflection.Emit.OpCode Conv_U2; public static readonly System.Reflection.Emit.OpCode Conv_U4; public static readonly System.Reflection.Emit.OpCode Conv_U8; public static readonly System.Reflection.Emit.OpCode Cpblk; public static readonly System.Reflection.Emit.OpCode Cpobj; public static readonly System.Reflection.Emit.OpCode Div; public static readonly System.Reflection.Emit.OpCode Div_Un; public static readonly System.Reflection.Emit.OpCode Dup; public static readonly System.Reflection.Emit.OpCode Endfilter; public static readonly System.Reflection.Emit.OpCode Endfinally; public static readonly System.Reflection.Emit.OpCode Initblk; public static readonly System.Reflection.Emit.OpCode Initobj; public static readonly System.Reflection.Emit.OpCode Isinst; public static readonly System.Reflection.Emit.OpCode Jmp; public static readonly System.Reflection.Emit.OpCode Ldarg; public static readonly System.Reflection.Emit.OpCode Ldarga; public static readonly System.Reflection.Emit.OpCode Ldarga_S; public static readonly System.Reflection.Emit.OpCode Ldarg_0; public static readonly System.Reflection.Emit.OpCode Ldarg_1; public static readonly System.Reflection.Emit.OpCode Ldarg_2; public static readonly System.Reflection.Emit.OpCode Ldarg_3; public static readonly System.Reflection.Emit.OpCode Ldarg_S; public static readonly System.Reflection.Emit.OpCode Ldc_I4; public static readonly System.Reflection.Emit.OpCode Ldc_I4_0; public static readonly System.Reflection.Emit.OpCode Ldc_I4_1; public static readonly System.Reflection.Emit.OpCode Ldc_I4_2; public static readonly System.Reflection.Emit.OpCode Ldc_I4_3; public static readonly System.Reflection.Emit.OpCode Ldc_I4_4; public static readonly System.Reflection.Emit.OpCode Ldc_I4_5; public static readonly System.Reflection.Emit.OpCode Ldc_I4_6; public static readonly System.Reflection.Emit.OpCode Ldc_I4_7; public static readonly System.Reflection.Emit.OpCode Ldc_I4_8; public static readonly System.Reflection.Emit.OpCode Ldc_I4_M1; public static readonly System.Reflection.Emit.OpCode Ldc_I4_S; public static readonly System.Reflection.Emit.OpCode Ldc_I8; public static readonly System.Reflection.Emit.OpCode Ldc_R4; public static readonly System.Reflection.Emit.OpCode Ldc_R8; public static readonly System.Reflection.Emit.OpCode Ldelem; public static readonly System.Reflection.Emit.OpCode Ldelema; public static readonly System.Reflection.Emit.OpCode Ldelem_I; public static readonly System.Reflection.Emit.OpCode Ldelem_I1; public static readonly System.Reflection.Emit.OpCode Ldelem_I2; public static readonly System.Reflection.Emit.OpCode Ldelem_I4; public static readonly System.Reflection.Emit.OpCode Ldelem_I8; public static readonly System.Reflection.Emit.OpCode Ldelem_R4; public static readonly System.Reflection.Emit.OpCode Ldelem_R8; public static readonly System.Reflection.Emit.OpCode Ldelem_Ref; public static readonly System.Reflection.Emit.OpCode Ldelem_U1; public static readonly System.Reflection.Emit.OpCode Ldelem_U2; public static readonly System.Reflection.Emit.OpCode Ldelem_U4; public static readonly System.Reflection.Emit.OpCode Ldfld; public static readonly System.Reflection.Emit.OpCode Ldflda; public static readonly System.Reflection.Emit.OpCode Ldftn; public static readonly System.Reflection.Emit.OpCode Ldind_I; public static readonly System.Reflection.Emit.OpCode Ldind_I1; public static readonly System.Reflection.Emit.OpCode Ldind_I2; public static readonly System.Reflection.Emit.OpCode Ldind_I4; public static readonly System.Reflection.Emit.OpCode Ldind_I8; public static readonly System.Reflection.Emit.OpCode Ldind_R4; public static readonly System.Reflection.Emit.OpCode Ldind_R8; public static readonly System.Reflection.Emit.OpCode Ldind_Ref; public static readonly System.Reflection.Emit.OpCode Ldind_U1; public static readonly System.Reflection.Emit.OpCode Ldind_U2; public static readonly System.Reflection.Emit.OpCode Ldind_U4; public static readonly System.Reflection.Emit.OpCode Ldlen; public static readonly System.Reflection.Emit.OpCode Ldloc; public static readonly System.Reflection.Emit.OpCode Ldloca; public static readonly System.Reflection.Emit.OpCode Ldloca_S; public static readonly System.Reflection.Emit.OpCode Ldloc_0; public static readonly System.Reflection.Emit.OpCode Ldloc_1; public static readonly System.Reflection.Emit.OpCode Ldloc_2; public static readonly System.Reflection.Emit.OpCode Ldloc_3; public static readonly System.Reflection.Emit.OpCode Ldloc_S; public static readonly System.Reflection.Emit.OpCode Ldnull; public static readonly System.Reflection.Emit.OpCode Ldobj; public static readonly System.Reflection.Emit.OpCode Ldsfld; public static readonly System.Reflection.Emit.OpCode Ldsflda; public static readonly System.Reflection.Emit.OpCode Ldstr; public static readonly System.Reflection.Emit.OpCode Ldtoken; public static readonly System.Reflection.Emit.OpCode Ldvirtftn; public static readonly System.Reflection.Emit.OpCode Leave; public static readonly System.Reflection.Emit.OpCode Leave_S; public static readonly System.Reflection.Emit.OpCode Localloc; public static readonly System.Reflection.Emit.OpCode Mkrefany; public static readonly System.Reflection.Emit.OpCode Mul; public static readonly System.Reflection.Emit.OpCode Mul_Ovf; public static readonly System.Reflection.Emit.OpCode Mul_Ovf_Un; public static readonly System.Reflection.Emit.OpCode Neg; public static readonly System.Reflection.Emit.OpCode Newarr; public static readonly System.Reflection.Emit.OpCode Newobj; public static readonly System.Reflection.Emit.OpCode Nop; public static readonly System.Reflection.Emit.OpCode Not; public static readonly System.Reflection.Emit.OpCode Or; public static readonly System.Reflection.Emit.OpCode Pop; public static readonly System.Reflection.Emit.OpCode Prefix1; public static readonly System.Reflection.Emit.OpCode Prefix2; public static readonly System.Reflection.Emit.OpCode Prefix3; public static readonly System.Reflection.Emit.OpCode Prefix4; public static readonly System.Reflection.Emit.OpCode Prefix5; public static readonly System.Reflection.Emit.OpCode Prefix6; public static readonly System.Reflection.Emit.OpCode Prefix7; public static readonly System.Reflection.Emit.OpCode Prefixref; public static readonly System.Reflection.Emit.OpCode Readonly; public static readonly System.Reflection.Emit.OpCode Refanytype; public static readonly System.Reflection.Emit.OpCode Refanyval; public static readonly System.Reflection.Emit.OpCode Rem; public static readonly System.Reflection.Emit.OpCode Rem_Un; public static readonly System.Reflection.Emit.OpCode Ret; public static readonly System.Reflection.Emit.OpCode Rethrow; public static readonly System.Reflection.Emit.OpCode Shl; public static readonly System.Reflection.Emit.OpCode Shr; public static readonly System.Reflection.Emit.OpCode Shr_Un; public static readonly System.Reflection.Emit.OpCode Sizeof; public static readonly System.Reflection.Emit.OpCode Starg; public static readonly System.Reflection.Emit.OpCode Starg_S; public static readonly System.Reflection.Emit.OpCode Stelem; public static readonly System.Reflection.Emit.OpCode Stelem_I; public static readonly System.Reflection.Emit.OpCode Stelem_I1; public static readonly System.Reflection.Emit.OpCode Stelem_I2; public static readonly System.Reflection.Emit.OpCode Stelem_I4; public static readonly System.Reflection.Emit.OpCode Stelem_I8; public static readonly System.Reflection.Emit.OpCode Stelem_R4; public static readonly System.Reflection.Emit.OpCode Stelem_R8; public static readonly System.Reflection.Emit.OpCode Stelem_Ref; public static readonly System.Reflection.Emit.OpCode Stfld; public static readonly System.Reflection.Emit.OpCode Stind_I; public static readonly System.Reflection.Emit.OpCode Stind_I1; public static readonly System.Reflection.Emit.OpCode Stind_I2; public static readonly System.Reflection.Emit.OpCode Stind_I4; public static readonly System.Reflection.Emit.OpCode Stind_I8; public static readonly System.Reflection.Emit.OpCode Stind_R4; public static readonly System.Reflection.Emit.OpCode Stind_R8; public static readonly System.Reflection.Emit.OpCode Stind_Ref; public static readonly System.Reflection.Emit.OpCode Stloc; public static readonly System.Reflection.Emit.OpCode Stloc_0; public static readonly System.Reflection.Emit.OpCode Stloc_1; public static readonly System.Reflection.Emit.OpCode Stloc_2; public static readonly System.Reflection.Emit.OpCode Stloc_3; public static readonly System.Reflection.Emit.OpCode Stloc_S; public static readonly System.Reflection.Emit.OpCode Stobj; public static readonly System.Reflection.Emit.OpCode Stsfld; public static readonly System.Reflection.Emit.OpCode Sub; public static readonly System.Reflection.Emit.OpCode Sub_Ovf; public static readonly System.Reflection.Emit.OpCode Sub_Ovf_Un; public static readonly System.Reflection.Emit.OpCode Switch; public static readonly System.Reflection.Emit.OpCode Tailcall; public static readonly System.Reflection.Emit.OpCode Throw; public static readonly System.Reflection.Emit.OpCode Unaligned; public static readonly System.Reflection.Emit.OpCode Unbox; public static readonly System.Reflection.Emit.OpCode Unbox_Any; public static readonly System.Reflection.Emit.OpCode Volatile; public static readonly System.Reflection.Emit.OpCode Xor; public static bool TakesSingleByteArgument(System.Reflection.Emit.OpCode inst) { throw null; } } public enum OpCodeType { [System.ObsoleteAttribute("This API has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")] Annotation = 0, Macro = 1, Nternal = 2, Objmodel = 3, Prefix = 4, Primitive = 5, } public enum OperandType { InlineBrTarget = 0, InlineField = 1, InlineI = 2, InlineI8 = 3, InlineMethod = 4, InlineNone = 5, [System.ObsoleteAttribute("This API has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")] InlinePhi = 6, InlineR = 7, InlineSig = 9, InlineString = 10, InlineSwitch = 11, InlineTok = 12, InlineType = 13, InlineVar = 14, ShortInlineBrTarget = 15, ShortInlineI = 16, ShortInlineR = 17, ShortInlineVar = 18, } public enum PackingSize { Size1 = 1, Size128 = 128, Size16 = 16, Size2 = 2, Size32 = 32, Size4 = 4, Size64 = 64, Size8 = 8, Unspecified = 0, } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._ParameterBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class ParameterBuilder : System.Runtime.InteropServices._ParameterBuilder { internal ParameterBuilder() { } public virtual int Attributes { get { throw null; } } public bool IsIn { get { throw null; } } public bool IsOptional { get { throw null; } } public bool IsOut { get { throw null; } } public virtual string Name { get { throw null; } } public virtual int Position { get { throw null; } } public virtual System.Reflection.Emit.ParameterToken GetToken() { throw null; } public virtual void SetConstant(object defaultValue) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } [System.ObsoleteAttribute("An alternate API is available: Emit the MarshalAs custom attribute instead.")] public virtual void SetMarshal(System.Reflection.Emit.UnmanagedMarshal unmanagedMarshal) { } void System.Runtime.InteropServices._ParameterBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._ParameterBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._ParameterBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._ParameterBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ParameterToken : System.IEquatable { private readonly int _dummyPrimitive; public static readonly System.Reflection.Emit.ParameterToken Empty; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.ParameterToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.ParameterToken a, System.Reflection.Emit.ParameterToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.ParameterToken a, System.Reflection.Emit.ParameterToken b) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum PEFileKinds { ConsoleApplication = 2, Dll = 1, WindowApplication = 3, } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._PropertyBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class PropertyBuilder : System.Reflection.PropertyInfo, System.Runtime.InteropServices._PropertyBuilder { internal PropertyBuilder() { } public override System.Reflection.PropertyAttributes Attributes { get { throw null; } } public override bool CanRead { get { throw null; } } public override bool CanWrite { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public System.Reflection.Emit.PropertyToken PropertyToken { get { throw null; } } public override System.Type PropertyType { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } public void AddOtherMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { } public override System.Reflection.MethodInfo[] GetAccessors(bool nonPublic) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public override System.Reflection.MethodInfo GetGetMethod(bool nonPublic) { throw null; } public override System.Reflection.ParameterInfo[] GetIndexParameters() { throw null; } public override System.Reflection.MethodInfo GetSetMethod(bool nonPublic) { throw null; } public override object GetValue(object obj, object[] index) { throw null; } public override object GetValue(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture) { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } public void SetConstant(object defaultValue) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } public void SetGetMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { } public void SetSetMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { } public override void SetValue(object obj, object value, object[] index) { } public override void SetValue(object obj, object value, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture) { } void System.Runtime.InteropServices._PropertyBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._PropertyBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._PropertyBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._PropertyBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct PropertyToken : System.IEquatable { private readonly int _dummyPrimitive; public static readonly System.Reflection.Emit.PropertyToken Empty; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.PropertyToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.PropertyToken a, System.Reflection.Emit.PropertyToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.PropertyToken a, System.Reflection.Emit.PropertyToken b) { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._SignatureHelper))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class SignatureHelper : System.Runtime.InteropServices._SignatureHelper { internal SignatureHelper() { } public void AddArgument(System.Type clsArgument) { } [System.MonoTODOAttribute("pinned is ignored")] public void AddArgument(System.Type argument, bool pinned) { } public void AddArgument(System.Type argument, System.Type[] requiredCustomModifiers, System.Type[] optionalCustomModifiers) { } [System.MonoTODOAttribute("Currently we ignore requiredCustomModifiers and optionalCustomModifiers")] public void AddArguments(System.Type[] arguments, System.Type[][] requiredCustomModifiers, System.Type[][] optionalCustomModifiers) { } [System.MonoTODOAttribute("Not implemented")] public void AddSentinel() { } public override bool Equals(object obj) { throw null; } public static System.Reflection.Emit.SignatureHelper GetFieldSigHelper(System.Reflection.Module mod) { throw null; } public override int GetHashCode() { throw null; } public static System.Reflection.Emit.SignatureHelper GetLocalVarSigHelper() { throw null; } public static System.Reflection.Emit.SignatureHelper GetLocalVarSigHelper(System.Reflection.Module mod) { throw null; } public static System.Reflection.Emit.SignatureHelper GetMethodSigHelper(System.Reflection.CallingConventions callingConvention, System.Type returnType) { throw null; } public static System.Reflection.Emit.SignatureHelper GetMethodSigHelper(System.Reflection.Module mod, System.Reflection.CallingConventions callingConvention, System.Type returnType) { throw null; } public static System.Reflection.Emit.SignatureHelper GetMethodSigHelper(System.Reflection.Module mod, System.Runtime.InteropServices.CallingConvention unmanagedCallConv, System.Type returnType) { throw null; } public static System.Reflection.Emit.SignatureHelper GetMethodSigHelper(System.Reflection.Module mod, System.Type returnType, System.Type[] parameterTypes) { throw null; } public static System.Reflection.Emit.SignatureHelper GetMethodSigHelper(System.Runtime.InteropServices.CallingConvention unmanagedCallingConvention, System.Type returnType) { throw null; } [System.MonoTODOAttribute("Not implemented")] public static System.Reflection.Emit.SignatureHelper GetPropertySigHelper(System.Reflection.Module mod, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] requiredReturnTypeCustomModifiers, System.Type[] optionalReturnTypeCustomModifiers, System.Type[] parameterTypes, System.Type[][] requiredParameterTypeCustomModifiers, System.Type[][] optionalParameterTypeCustomModifiers) { throw null; } [System.MonoTODOAttribute("Not implemented")] public static System.Reflection.Emit.SignatureHelper GetPropertySigHelper(System.Reflection.Module mod, System.Type returnType, System.Type[] parameterTypes) { throw null; } [System.MonoTODOAttribute("Not implemented")] public static System.Reflection.Emit.SignatureHelper GetPropertySigHelper(System.Reflection.Module mod, System.Type returnType, System.Type[] requiredReturnTypeCustomModifiers, System.Type[] optionalReturnTypeCustomModifiers, System.Type[] parameterTypes, System.Type[][] requiredParameterTypeCustomModifiers, System.Type[][] optionalParameterTypeCustomModifiers) { throw null; } public byte[] GetSignature() { throw null; } void System.Runtime.InteropServices._SignatureHelper.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._SignatureHelper.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._SignatureHelper.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._SignatureHelper.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SignatureToken : System.IEquatable { private readonly int _dummyPrimitive; public static readonly System.Reflection.Emit.SignatureToken Empty; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.SignatureToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.SignatureToken a, System.Reflection.Emit.SignatureToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.SignatureToken a, System.Reflection.Emit.SignatureToken b) { throw null; } } public enum StackBehaviour { Pop0 = 0, Pop1 = 1, Pop1_pop1 = 2, Popi = 3, Popi_pop1 = 4, Popi_popi = 5, Popi_popi8 = 6, Popi_popi_popi = 7, Popi_popr4 = 8, Popi_popr8 = 9, Popref = 10, Popref_pop1 = 11, Popref_popi = 12, Popref_popi_pop1 = 28, Popref_popi_popi = 13, Popref_popi_popi8 = 14, Popref_popi_popr4 = 15, Popref_popi_popr8 = 16, Popref_popi_popref = 17, Push0 = 18, Push1 = 19, Push1_push1 = 20, Pushi = 21, Pushi8 = 22, Pushr4 = 23, Pushr8 = 24, Pushref = 25, Varpop = 26, Varpush = 27, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct StringToken : System.IEquatable { private readonly int _dummyPrimitive; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.StringToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.StringToken a, System.Reflection.Emit.StringToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.StringToken a, System.Reflection.Emit.StringToken b) { throw null; } } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComDefaultInterfaceAttribute(typeof(System.Runtime.InteropServices._TypeBuilder))] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class TypeBuilder : System.Reflection.TypeInfo, System.Runtime.InteropServices._TypeBuilder { internal TypeBuilder() { } public const int UnspecifiedTypeSize = 0; public override System.Reflection.Assembly Assembly { get { throw null; } } public override string AssemblyQualifiedName { get { throw null; } } public override System.Type BaseType { get { throw null; } } public override bool ContainsGenericParameters { get { throw null; } } public override System.Reflection.MethodBase DeclaringMethod { get { throw null; } } public override System.Type DeclaringType { get { throw null; } } public override string FullName { get { throw null; } } public override System.Reflection.GenericParameterAttributes GenericParameterAttributes { get { throw null; } } [System.MonoTODOAttribute] public override int GenericParameterPosition { get { throw null; } } public override System.Guid GUID { get { throw null; } } public override bool IsConstructedGenericType { get { throw null; } } public override bool IsGenericParameter { get { throw null; } } public override bool IsGenericType { get { throw null; } } public override bool IsGenericTypeDefinition { get { throw null; } } public override bool IsTypeDefinition { get { throw null; } } public override System.Reflection.Module Module { get { throw null; } } public override string Name { get { throw null; } } public override string Namespace { get { throw null; } } public System.Reflection.Emit.PackingSize PackingSize { get { throw null; } } public override System.Type ReflectedType { get { throw null; } } public int Size { get { throw null; } } public override System.RuntimeTypeHandle TypeHandle { get { throw null; } } public System.Reflection.Emit.TypeToken TypeToken { get { throw null; } } public override System.Type UnderlyingSystemType { get { throw null; } } public void AddDeclarativeSecurity(System.Security.Permissions.SecurityAction action, System.Security.PermissionSet pset) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void AddInterfaceImplementation(System.Type interfaceType) { } public System.Type CreateType() { throw null; } public System.Reflection.TypeInfo CreateTypeInfo() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Reflection.Emit.ConstructorBuilder DefineConstructor(System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type[] parameterTypes) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Reflection.Emit.ConstructorBuilder DefineConstructor(System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type[] parameterTypes, System.Type[][] requiredCustomModifiers, System.Type[][] optionalCustomModifiers) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Reflection.Emit.ConstructorBuilder DefineDefaultConstructor(System.Reflection.MethodAttributes attributes) { throw null; } public System.Reflection.Emit.EventBuilder DefineEvent(string name, System.Reflection.EventAttributes attributes, System.Type eventtype) { throw null; } public System.Reflection.Emit.FieldBuilder DefineField(string fieldName, System.Type type, System.Reflection.FieldAttributes attributes) { throw null; } public System.Reflection.Emit.FieldBuilder DefineField(string fieldName, System.Type type, System.Type[] requiredCustomModifiers, System.Type[] optionalCustomModifiers, System.Reflection.FieldAttributes attributes) { throw null; } public System.Reflection.Emit.GenericTypeParameterBuilder[] DefineGenericParameters(params string[] names) { throw null; } public System.Reflection.Emit.FieldBuilder DefineInitializedData(string name, byte[] data, System.Reflection.FieldAttributes attributes) { throw null; } public System.Reflection.Emit.MethodBuilder DefineMethod(string name, System.Reflection.MethodAttributes attributes) { throw null; } public System.Reflection.Emit.MethodBuilder DefineMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention) { throw null; } public System.Reflection.Emit.MethodBuilder DefineMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes) { throw null; } public System.Reflection.Emit.MethodBuilder DefineMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] returnTypeRequiredCustomModifiers, System.Type[] returnTypeOptionalCustomModifiers, System.Type[] parameterTypes, System.Type[][] parameterTypeRequiredCustomModifiers, System.Type[][] parameterTypeOptionalCustomModifiers) { throw null; } public System.Reflection.Emit.MethodBuilder DefineMethod(string name, System.Reflection.MethodAttributes attributes, System.Type returnType, System.Type[] parameterTypes) { throw null; } public void DefineMethodOverride(System.Reflection.MethodInfo methodInfoBody, System.Reflection.MethodInfo methodInfoDeclaration) { } public System.Reflection.Emit.TypeBuilder DefineNestedType(string name) { throw null; } public System.Reflection.Emit.TypeBuilder DefineNestedType(string name, System.Reflection.TypeAttributes attr) { throw null; } public System.Reflection.Emit.TypeBuilder DefineNestedType(string name, System.Reflection.TypeAttributes attr, System.Type parent) { throw null; } public System.Reflection.Emit.TypeBuilder DefineNestedType(string name, System.Reflection.TypeAttributes attr, System.Type parent, int typeSize) { throw null; } public System.Reflection.Emit.TypeBuilder DefineNestedType(string name, System.Reflection.TypeAttributes attr, System.Type parent, System.Reflection.Emit.PackingSize packSize) { throw null; } public System.Reflection.Emit.TypeBuilder DefineNestedType(string name, System.Reflection.TypeAttributes attr, System.Type parent, System.Reflection.Emit.PackingSize packSize, int typeSize) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Reflection.Emit.TypeBuilder DefineNestedType(string name, System.Reflection.TypeAttributes attr, System.Type parent, System.Type[] interfaces) { throw null; } public System.Reflection.Emit.MethodBuilder DefinePInvokeMethod(string name, string dllName, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Runtime.InteropServices.CallingConvention nativeCallConv, System.Runtime.InteropServices.CharSet nativeCharSet) { throw null; } public System.Reflection.Emit.MethodBuilder DefinePInvokeMethod(string name, string dllName, string entryName, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Runtime.InteropServices.CallingConvention nativeCallConv, System.Runtime.InteropServices.CharSet nativeCharSet) { throw null; } public System.Reflection.Emit.MethodBuilder DefinePInvokeMethod(string name, string dllName, string entryName, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] returnTypeRequiredCustomModifiers, System.Type[] returnTypeOptionalCustomModifiers, System.Type[] parameterTypes, System.Type[][] parameterTypeRequiredCustomModifiers, System.Type[][] parameterTypeOptionalCustomModifiers, System.Runtime.InteropServices.CallingConvention nativeCallConv, System.Runtime.InteropServices.CharSet nativeCharSet) { throw null; } public System.Reflection.Emit.PropertyBuilder DefineProperty(string name, System.Reflection.PropertyAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes) { throw null; } public System.Reflection.Emit.PropertyBuilder DefineProperty(string name, System.Reflection.PropertyAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] returnTypeRequiredCustomModifiers, System.Type[] returnTypeOptionalCustomModifiers, System.Type[] parameterTypes, System.Type[][] parameterTypeRequiredCustomModifiers, System.Type[][] parameterTypeOptionalCustomModifiers) { throw null; } public System.Reflection.Emit.PropertyBuilder DefineProperty(string name, System.Reflection.PropertyAttributes attributes, System.Type returnType, System.Type[] parameterTypes) { throw null; } public System.Reflection.Emit.PropertyBuilder DefineProperty(string name, System.Reflection.PropertyAttributes attributes, System.Type returnType, System.Type[] returnTypeRequiredCustomModifiers, System.Type[] returnTypeOptionalCustomModifiers, System.Type[] parameterTypes, System.Type[][] parameterTypeRequiredCustomModifiers, System.Type[][] parameterTypeOptionalCustomModifiers) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Reflection.Emit.ConstructorBuilder DefineTypeInitializer() { throw null; } public System.Reflection.Emit.FieldBuilder DefineUninitializedData(string name, int size, System.Reflection.FieldAttributes attributes) { throw null; } protected override System.Reflection.TypeAttributes GetAttributeFlagsImpl() { throw null; } public static System.Reflection.ConstructorInfo GetConstructor(System.Type type, System.Reflection.ConstructorInfo constructor) { throw null; } protected override System.Reflection.ConstructorInfo GetConstructorImpl(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Reflection.ConstructorInfo[] GetConstructors(System.Reflection.BindingFlags bindingAttr) { throw null; } public override object[] GetCustomAttributes(bool inherit) { throw null; } public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw null; } public override System.Type GetElementType() { throw null; } public override System.Reflection.EventInfo GetEvent(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.EventInfo[] GetEvents() { throw null; } public override System.Reflection.EventInfo[] GetEvents(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.FieldInfo GetField(System.Type type, System.Reflection.FieldInfo field) { throw null; } public override System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type[] GetGenericArguments() { throw null; } public override System.Type GetGenericTypeDefinition() { throw null; } public override System.Type GetInterface(string name, bool ignoreCase) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override System.Reflection.InterfaceMapping GetInterfaceMap(System.Type interfaceType) { throw null; } public override System.Type[] GetInterfaces() { throw null; } public override System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.MemberTypes type, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr) { throw null; } public static System.Reflection.MethodInfo GetMethod(System.Type type, System.Reflection.MethodInfo method) { throw null; } protected override System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } public override System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type GetNestedType(string name, System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Type[] GetNestedTypes(System.Reflection.BindingFlags bindingAttr) { throw null; } public override System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr) { throw null; } protected override System.Reflection.PropertyInfo GetPropertyImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw null; } protected override bool HasElementTypeImpl() { throw null; } public override object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters) { throw null; } protected override bool IsArrayImpl() { throw null; } public override bool IsAssignableFrom(System.Reflection.TypeInfo typeInfo) { throw null; } [System.MonoTODOAttribute] public override bool IsAssignableFrom(System.Type c) { throw null; } protected override bool IsByRefImpl() { throw null; } protected override bool IsCOMObjectImpl() { throw null; } public bool IsCreated() { throw null; } public override bool IsDefined(System.Type attributeType, bool inherit) { throw null; } protected override bool IsPointerImpl() { throw null; } protected override bool IsPrimitiveImpl() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override bool IsSubclassOf(System.Type c) { throw null; } protected override bool IsValueTypeImpl() { throw null; } public override System.Type MakeArrayType() { throw null; } public override System.Type MakeArrayType(int rank) { throw null; } public override System.Type MakeByRefType() { throw null; } public override System.Type MakeGenericType(params System.Type[] typeArguments) { throw null; } public override System.Type MakePointerType() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { } public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { } public void SetParent(System.Type parent) { } void System.Runtime.InteropServices._TypeBuilder.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._TypeBuilder.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._TypeBuilder.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._TypeBuilder.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct TypeToken : System.IEquatable { private readonly int _dummyPrimitive; public static readonly System.Reflection.Emit.TypeToken Empty; public int Token { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Reflection.Emit.TypeToken obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Reflection.Emit.TypeToken a, System.Reflection.Emit.TypeToken b) { throw null; } public static bool operator !=(System.Reflection.Emit.TypeToken a, System.Reflection.Emit.TypeToken b) { throw null; } } [System.ObsoleteAttribute("An alternate API is available: Emit the MarshalAs custom attribute instead.")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class UnmanagedMarshal { internal UnmanagedMarshal() { } public System.Runtime.InteropServices.UnmanagedType BaseType { get { throw null; } } public int ElementCount { get { throw null; } } public System.Runtime.InteropServices.UnmanagedType GetUnmanagedType { get { throw null; } } public System.Guid IIDGuid { get { throw null; } } public static System.Reflection.Emit.UnmanagedMarshal DefineByValArray(int elemCount) { throw null; } public static System.Reflection.Emit.UnmanagedMarshal DefineByValTStr(int elemCount) { throw null; } public static System.Reflection.Emit.UnmanagedMarshal DefineLPArray(System.Runtime.InteropServices.UnmanagedType elemType) { throw null; } public static System.Reflection.Emit.UnmanagedMarshal DefineSafeArray(System.Runtime.InteropServices.UnmanagedType elemType) { throw null; } public static System.Reflection.Emit.UnmanagedMarshal DefineUnmanagedMarshal(System.Runtime.InteropServices.UnmanagedType unmanagedType) { throw null; } } } namespace System.Reflection.Metadata { public static partial class AssemblyExtensions { [System.CLSCompliantAttribute(false)] public unsafe static bool TryGetRawMetadata(this System.Reflection.Assembly assembly, out byte* blob, out int length) { throw null; } } } namespace System.Resources { public partial interface IResourceReader : System.Collections.IEnumerable, System.IDisposable { void Close(); new System.Collections.IDictionaryEnumerator GetEnumerator(); } public partial interface IResourceWriter : System.IDisposable { void AddResource(string name, byte[] value); void AddResource(string name, object value); void AddResource(string name, string value); void Close(); void Generate(); } [System.SerializableAttribute] public partial class MissingManifestResourceException : System.SystemException { public MissingManifestResourceException() { } protected MissingManifestResourceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MissingManifestResourceException(string message) { } public MissingManifestResourceException(string message, System.Exception inner) { } } [System.SerializableAttribute] public partial class MissingSatelliteAssemblyException : System.SystemException { public MissingSatelliteAssemblyException() { } protected MissingSatelliteAssemblyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MissingSatelliteAssemblyException(string message) { } public MissingSatelliteAssemblyException(string message, System.Exception inner) { } public MissingSatelliteAssemblyException(string message, string cultureName) { } public string CultureName { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false)] public sealed partial class NeutralResourcesLanguageAttribute : System.Attribute { public NeutralResourcesLanguageAttribute(string cultureName) { } public NeutralResourcesLanguageAttribute(string cultureName, System.Resources.UltimateResourceFallbackLocation location) { } public string CultureName { get { throw null; } } public System.Resources.UltimateResourceFallbackLocation Location { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ResourceManager { protected string BaseNameField; public static readonly int HeaderVersionNumber; public static readonly int MagicNumber; protected System.Reflection.Assembly MainAssembly; [System.ObsoleteAttribute("call InternalGetResourceSet instead")] protected System.Collections.Hashtable ResourceSets; protected ResourceManager() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public ResourceManager(string baseName, System.Reflection.Assembly assembly) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public ResourceManager(string baseName, System.Reflection.Assembly assembly, System.Type usingResourceSet) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public ResourceManager(System.Type resourceSource) { } public virtual string BaseName { get { throw null; } } protected System.Resources.UltimateResourceFallbackLocation FallbackLocation { get { throw null; } set { } } public virtual bool IgnoreCase { get { throw null; } set { } } public virtual System.Type ResourceSetType { get { throw null; } } public static System.Resources.ResourceManager CreateFileBasedResourceManager(string baseName, string resourceDir, System.Type usingResourceSet) { throw null; } [System.Security.SecuritySafeCriticalAttribute] protected static System.Globalization.CultureInfo GetNeutralResourcesLanguage(System.Reflection.Assembly a) { throw null; } public virtual object GetObject(string name) { throw null; } public virtual object GetObject(string name, System.Globalization.CultureInfo culture) { throw null; } protected virtual string GetResourceFileName(System.Globalization.CultureInfo culture) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public virtual System.Resources.ResourceSet GetResourceSet(System.Globalization.CultureInfo culture, bool createIfNotExists, bool tryParents) { throw null; } protected static System.Version GetSatelliteContractVersion(System.Reflection.Assembly a) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.IO.UnmanagedMemoryStream GetStream(string name) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.IO.UnmanagedMemoryStream GetStream(string name, System.Globalization.CultureInfo culture) { throw null; } public virtual string GetString(string name) { throw null; } public virtual string GetString(string name, System.Globalization.CultureInfo culture) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] protected virtual System.Resources.ResourceSet InternalGetResourceSet(System.Globalization.CultureInfo culture, bool createIfNotExists, bool tryParents) { throw null; } public virtual void ReleaseAllResources() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ResourceReader : System.Collections.IEnumerable, System.IDisposable, System.Resources.IResourceReader { [System.Security.SecurityCriticalAttribute] public ResourceReader(System.IO.Stream stream) { } [System.Security.SecuritySafeCriticalAttribute] public ResourceReader(string fileName) { } public void Close() { } public void Dispose() { } public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; } public void GetResourceData(string resourceName, out string resourceType, out byte[] resourceData) { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ResourceSet : System.Collections.IEnumerable, System.IDisposable { [System.NonSerializedAttribute] protected System.Resources.IResourceReader Reader; protected System.Collections.Hashtable Table; protected ResourceSet() { } [System.Security.SecurityCriticalAttribute] public ResourceSet(System.IO.Stream stream) { } public ResourceSet(System.Resources.IResourceReader reader) { } public ResourceSet(string fileName) { } public virtual void Close() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public virtual System.Type GetDefaultReader() { throw null; } public virtual System.Type GetDefaultWriter() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; } public virtual object GetObject(string name) { throw null; } public virtual object GetObject(string name, bool ignoreCase) { throw null; } public virtual string GetString(string name) { throw null; } public virtual string GetString(string name, bool ignoreCase) { throw null; } protected virtual void ReadResources() { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ResourceWriter : System.IDisposable, System.Resources.IResourceWriter { public ResourceWriter(System.IO.Stream stream) { } public ResourceWriter(string fileName) { } public System.Func TypeNameConverter { get { throw null; } set { } } public void AddResource(string name, byte[] value) { } public void AddResource(string name, System.IO.Stream value) { } public void AddResource(string name, System.IO.Stream value, bool closeAfterWrite) { } public void AddResource(string name, object value) { } public void AddResource(string name, string value) { } public void AddResourceData(string name, string typeName, byte[] serializedData) { } public void Close() { } public void Dispose() { } [System.Security.SecuritySafeCriticalAttribute] public void Generate() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false)] public sealed partial class SatelliteContractVersionAttribute : System.Attribute { public SatelliteContractVersionAttribute(string version) { } public string Version { get { throw null; } } } public enum UltimateResourceFallbackLocation { MainAssembly = 0, Satellite = 1, } } namespace System.Runtime { [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] public sealed partial class AssemblyTargetedPatchBandAttribute : System.Attribute { public AssemblyTargetedPatchBandAttribute(string targetedPatchBand) { } public string TargetedPatchBand { get { throw null; } } } public enum GCLargeObjectHeapCompactionMode { CompactOnce = 2, Default = 1, } [System.SerializableAttribute] public enum GCLatencyMode { Batch = 0, Interactive = 1, LowLatency = 2, NoGCRegion = 4, SustainedLowLatency = 3, } public static partial class GCSettings { [System.MonoTODOAttribute("Always returns false")] public static bool IsServerGC { get { throw null; } } public static System.Runtime.GCLargeObjectHeapCompactionMode LargeObjectHeapCompactionMode { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]set { } } [System.MonoTODOAttribute("Always returns GCLatencyMode.Interactive and ignores set")] public static System.Runtime.GCLatencyMode LatencyMode { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]set { } } } public sealed partial class MemoryFailPoint : System.Runtime.ConstrainedExecution.CriticalFinalizerObject, System.IDisposable { [System.MonoTODOAttribute] public MemoryFailPoint(int sizeInMegabytes) { } [System.MonoTODOAttribute] public void Dispose() { } ~MemoryFailPoint() { } } public static partial class ProfileOptimization { [System.Security.SecurityCriticalAttribute] public static void SetProfileRoot(string directoryPath) { } [System.Security.SecurityCriticalAttribute] public static void StartProfile(string profile) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor | System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)] public sealed partial class TargetedPatchingOptOutAttribute : System.Attribute { public TargetedPatchingOptOutAttribute(string reason) { } public string Reason { get { throw null; } } } } namespace System.Runtime.CompilerServices { [System.AttributeUsageAttribute(System.AttributeTargets.Field)] public sealed partial class AccessedThroughPropertyAttribute : System.Attribute { public AccessedThroughPropertyAttribute(string propertyName) { } public string PropertyName { get { throw null; } } } public partial struct AsyncIteratorMethodBuilder { private object _dummy; public void AwaitOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public void AwaitUnsafeOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public void Complete() { } public static System.Runtime.CompilerServices.AsyncIteratorMethodBuilder Create() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void MoveNext(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false, AllowMultiple=false)] public sealed partial class AsyncIteratorStateMachineAttribute : System.Runtime.CompilerServices.StateMachineAttribute { public AsyncIteratorStateMachineAttribute(System.Type stateMachineType) : base (default(System.Type)) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct, Inherited=false, AllowMultiple=false)] public sealed partial class AsyncMethodBuilderAttribute : System.Attribute { public AsyncMethodBuilderAttribute(System.Type builderType) { } public System.Type BuilderType { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false, AllowMultiple=false)] [System.SerializableAttribute] public sealed partial class AsyncStateMachineAttribute : System.Runtime.CompilerServices.StateMachineAttribute { public AsyncStateMachineAttribute(System.Type stateMachineType) : base (default(System.Type)) { } } [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct AsyncTaskMethodBuilder { private object _dummy; public System.Threading.Tasks.Task Task { get { throw null; } } public void AwaitOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public void AwaitUnsafeOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public static System.Runtime.CompilerServices.AsyncTaskMethodBuilder Create() { throw null; } public void SetException(System.Exception exception) { } public void SetResult() { } public void SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine stateMachine) { } [System.Diagnostics.DebuggerStepThroughAttribute] [System.Security.SecuritySafeCriticalAttribute] public void Start(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } } [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct AsyncTaskMethodBuilder { private object _dummy; public System.Threading.Tasks.Task Task { get { throw null; } } public void AwaitOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } [System.Security.SecuritySafeCriticalAttribute] public void AwaitUnsafeOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public static System.Runtime.CompilerServices.AsyncTaskMethodBuilder Create() { throw null; } public void SetException(System.Exception exception) { } public void SetResult(TResult result) { } public void SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine stateMachine) { } [System.Diagnostics.DebuggerStepThroughAttribute] [System.Security.SecuritySafeCriticalAttribute] public void Start(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } } public partial struct AsyncValueTaskMethodBuilder { private object _dummy; private int _dummyPrimitive; public System.Threading.Tasks.ValueTask Task { get { throw null; } } public void AwaitOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } [System.Security.SecuritySafeCriticalAttribute] public void AwaitUnsafeOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public static System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder Create() { throw null; } public void SetException(System.Exception exception) { } public void SetResult() { } public void SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine stateMachine) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void Start(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } } public partial struct AsyncValueTaskMethodBuilder { private TResult _result; private object _dummy; private int _dummyPrimitive; public System.Threading.Tasks.ValueTask Task { get { throw null; } } public void AwaitOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } [System.Security.SecuritySafeCriticalAttribute] public void AwaitUnsafeOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public static System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder Create() { throw null; } public void SetException(System.Exception exception) { } public void SetResult(TResult result) { } public void SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine stateMachine) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void Start(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } } [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct AsyncVoidMethodBuilder { private object _dummy; public void AwaitOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } [System.Security.SecuritySafeCriticalAttribute] public void AwaitUnsafeOnCompleted(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } public static System.Runtime.CompilerServices.AsyncVoidMethodBuilder Create() { throw null; } public void SetException(System.Exception exception) { } public void SetResult() { } public void SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine stateMachine) { } [System.Diagnostics.DebuggerStepThroughAttribute] [System.Security.SecuritySafeCriticalAttribute] public void Start(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class CallConvCdecl { public CallConvCdecl() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class CallConvFastcall { public CallConvFastcall() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class CallConvStdcall { public CallConvStdcall() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class CallConvThiscall { public CallConvThiscall() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] public sealed partial class CallerFilePathAttribute : System.Attribute { public CallerFilePathAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] public sealed partial class CallerLineNumberAttribute : System.Attribute { public CallerLineNumberAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] public sealed partial class CallerMemberNameAttribute : System.Attribute { public CallerMemberNameAttribute() { } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum CompilationRelaxations { NoStringInterning = 8, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Method | System.AttributeTargets.Module)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class CompilationRelaxationsAttribute : System.Attribute { public CompilationRelaxationsAttribute(int relaxations) { } public CompilationRelaxationsAttribute(System.Runtime.CompilerServices.CompilationRelaxations relaxations) { } public int CompilationRelaxations { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.All, Inherited=true)] [System.SerializableAttribute] public sealed partial class CompilerGeneratedAttribute : System.Attribute { public CompilerGeneratedAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class)] [System.SerializableAttribute] public partial class CompilerGlobalScopeAttribute : System.Attribute { public CompilerGlobalScopeAttribute() { } } public static partial class CompilerMarshalOverride { } public sealed partial class ConditionalWeakTable : System.Collections.Generic.IEnumerable>, System.Collections.IEnumerable where TKey : class where TValue : class { public ConditionalWeakTable() { } public void Add(TKey key, TValue value) { } public void AddOrUpdate(TKey key, TValue value) { } [System.Security.SecuritySafeCriticalAttribute] public void Clear() { } ~ConditionalWeakTable() { } public TValue GetOrCreateValue(TKey key) { throw null; } public TValue GetValue(TKey key, System.Runtime.CompilerServices.ConditionalWeakTable.CreateValueCallback createValueCallback) { throw null; } public bool Remove(TKey key) { throw null; } System.Collections.Generic.IEnumerator> System.Collections.Generic.IEnumerable>.GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public bool TryGetValue(TKey key, out TValue value) { throw null; } public delegate TValue CreateValueCallback(TKey key); } public readonly partial struct ConfiguredAsyncDisposable { private readonly object _dummy; private readonly int _dummyPrimitive; public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } } public readonly partial struct ConfiguredCancelableAsyncEnumerable { private readonly object _dummy; private readonly int _dummyPrimitive; public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable ConfigureAwait(bool continueOnCapturedContext) { throw null; } public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable.Enumerator GetAsyncEnumerator() { throw null; } public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable WithCancellation(System.Threading.CancellationToken cancellationToken) { throw null; } public readonly partial struct Enumerator { private readonly object _dummy; private readonly int _dummyPrimitive; public T Current { get { throw null; } } public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable MoveNextAsync() { throw null; } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ConfiguredTaskAwaitable { private readonly object _dummy; public System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter GetAwaiter() { throw null; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ConfiguredTaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; private readonly int _dummyPrimitive; public bool IsCompleted { get { throw null; } } public void GetResult() { } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ConfiguredTaskAwaitable { private readonly object _dummy; public System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter GetAwaiter() { throw null; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ConfiguredTaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; private readonly int _dummyPrimitive; public bool IsCompleted { get { throw null; } } public TResult GetResult() { throw null; } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } } public readonly partial struct ConfiguredValueTaskAwaitable { private readonly object _dummy; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter GetAwaiter() { throw null; } public readonly partial struct ConfiguredValueTaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; public bool IsCompleted { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void GetResult() { } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } } public readonly partial struct ConfiguredValueTaskAwaitable { private readonly object _dummy; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter GetAwaiter() { throw null; } public readonly partial struct ConfiguredValueTaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; public bool IsCompleted { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public TResult GetResult() { throw null; } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } } public static partial class ContractHelper { [System.Diagnostics.DebuggerNonUserCodeAttribute] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static string RaiseContractFailedEvent(System.Diagnostics.Contracts.ContractFailureKind failureKind, string userMessage, string conditionText, System.Exception innerException) { throw null; } [System.Diagnostics.DebuggerNonUserCodeAttribute] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void TriggerFailure(System.Diagnostics.Contracts.ContractFailureKind kind, string displayMessage, string userMessage, string conditionText, System.Exception innerException) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter, Inherited=false)] [System.SerializableAttribute] public abstract partial class CustomConstantAttribute : System.Attribute { protected CustomConstantAttribute() { } public abstract object Value { get; } } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter, Inherited=false)] [System.SerializableAttribute] public sealed partial class DateTimeConstantAttribute : System.Runtime.CompilerServices.CustomConstantAttribute { public DateTimeConstantAttribute(long ticks) { } public override object Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter, Inherited=false)] [System.SerializableAttribute] public sealed partial class DecimalConstantAttribute : System.Attribute { public DecimalConstantAttribute(byte scale, byte sign, int hi, int mid, int low) { } [System.CLSCompliantAttribute(false)] public DecimalConstantAttribute(byte scale, byte sign, uint hi, uint mid, uint low) { } public decimal Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly)] [System.SerializableAttribute] public sealed partial class DefaultDependencyAttribute : System.Attribute { public DefaultDependencyAttribute(System.Runtime.CompilerServices.LoadHint loadHintArgument) { } public System.Runtime.CompilerServices.LoadHint LoadHint { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true)] [System.SerializableAttribute] public sealed partial class DependencyAttribute : System.Attribute { public DependencyAttribute(string dependentAssemblyArgument, System.Runtime.CompilerServices.LoadHint loadHintArgument) { } public string DependentAssembly { get { throw null; } } public System.Runtime.CompilerServices.LoadHint LoadHint { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] public sealed partial class DisablePrivateReflectionAttribute : System.Attribute { public DisablePrivateReflectionAttribute() { } } public partial class DiscardableAttribute : System.Attribute { public DiscardableAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Method)] public sealed partial class ExtensionAttribute : System.Attribute { public ExtensionAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field)] [System.SerializableAttribute] public sealed partial class FixedAddressValueTypeAttribute : System.Attribute { public FixedAddressValueTypeAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field, Inherited=false)] public sealed partial class FixedBufferAttribute : System.Attribute { public FixedBufferAttribute(System.Type elementType, int length) { } public System.Type ElementType { get { throw null; } } public int Length { get { throw null; } } } public static partial class FormattableStringFactory { public static System.FormattableString Create(string format, params object[] arguments) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Struct)] [System.SerializableAttribute] public sealed partial class HasCopySemanticsAttribute : System.Attribute { public HasCopySemanticsAttribute() { } } public partial interface IAsyncStateMachine { void MoveNext(); void SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine stateMachine); } public partial interface ICriticalNotifyCompletion : System.Runtime.CompilerServices.INotifyCompletion { void UnsafeOnCompleted(System.Action continuation); } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class IDispatchConstantAttribute : System.Runtime.CompilerServices.CustomConstantAttribute { public IDispatchConstantAttribute() { } public override object Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Property, Inherited=true)] [System.SerializableAttribute] public sealed partial class IndexerNameAttribute : System.Attribute { public IndexerNameAttribute(string indexerName) { } } public partial interface INotifyCompletion { void OnCompleted(System.Action continuation); } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true, Inherited=false)] public sealed partial class InternalsVisibleToAttribute : System.Attribute { public InternalsVisibleToAttribute(string assemblyName) { } public bool AllInternalsVisible { get { throw null; } set { } } public string AssemblyName { get { throw null; } } } public static partial class IsBoxed { } [System.AttributeUsageAttribute(System.AttributeTargets.Struct)] public sealed partial class IsByRefLikeAttribute : System.Attribute { public IsByRefLikeAttribute() { } } public static partial class IsByValue { } public static partial class IsConst { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class IsCopyConstructed { } public static partial class IsExplicitlyDereferenced { } public static partial class IsImplicitlyDereferenced { } public static partial class IsJitIntrinsic { } public static partial class IsLong { } public static partial class IsPinned { } [System.AttributeUsageAttribute(System.AttributeTargets.All, Inherited=false)] public sealed partial class IsReadOnlyAttribute : System.Attribute { public IsReadOnlyAttribute() { } } public static partial class IsSignUnspecifiedByte { } public static partial class IsUdtReturn { } public static partial class IsVolatile { } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false, AllowMultiple=false)] [System.SerializableAttribute] public sealed partial class IteratorStateMachineAttribute : System.Runtime.CompilerServices.StateMachineAttribute { public IteratorStateMachineAttribute(System.Type stateMachineType) : base (default(System.Type)) { } } public partial interface ITuple { object this[int index] { get; } int Length { get; } } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class IUnknownConstantAttribute : System.Runtime.CompilerServices.CustomConstantAttribute { public IUnknownConstantAttribute() { } public override object Value { get { throw null; } } } [System.SerializableAttribute] public enum LoadHint { Always = 1, Default = 0, Sometimes = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum MethodCodeType { IL = 0, Native = 1, OPTIL = 2, Runtime = 3, } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor | System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class MethodImplAttribute : System.Attribute { public System.Runtime.CompilerServices.MethodCodeType MethodCodeType; public MethodImplAttribute() { } public MethodImplAttribute(short value) { } public MethodImplAttribute(System.Runtime.CompilerServices.MethodImplOptions methodImplOptions) { } public System.Runtime.CompilerServices.MethodImplOptions Value { get { throw null; } } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum MethodImplOptions { [System.Runtime.InteropServices.ComVisibleAttribute(false)] AggressiveInlining = 256, ForwardRef = 16, InternalCall = 4096, NoInlining = 8, NoOptimization = 64, PreserveSig = 128, Synchronized = 32, Unmanaged = 4, } [System.AttributeUsageAttribute(System.AttributeTargets.Struct, Inherited=true)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class NativeCppClassAttribute : System.Attribute { public NativeCppClassAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false)] [System.SerializableAttribute] public sealed partial class ReferenceAssemblyAttribute : System.Attribute { public ReferenceAssemblyAttribute() { } public ReferenceAssemblyAttribute(string description) { } public string Description { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class RequiredAttributeAttribute : System.Attribute { public RequiredAttributeAttribute(System.Type requiredContract) { } public System.Type RequiredContract { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false, AllowMultiple=false)] [System.SerializableAttribute] public sealed partial class RuntimeCompatibilityAttribute : System.Attribute { public RuntimeCompatibilityAttribute() { } public bool WrapNonExceptionThrows { get { throw null; } set { } } } public static partial class RuntimeFeature { public const string PortablePdb = "PortablePdb"; public static bool IsDynamicCodeCompiled { get { throw null; } } public static bool IsDynamicCodeSupported { get { throw null; } } public static bool IsSupported(string feature) { throw null; } } public static partial class RuntimeHelpers { public static int OffsetToStringData { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void EnsureSufficientExecutionStack() { } public static new bool Equals(object o1, object o2) { throw null; } public static void ExecuteCodeWithGuaranteedCleanup(System.Runtime.CompilerServices.RuntimeHelpers.TryCode code, System.Runtime.CompilerServices.RuntimeHelpers.CleanupCode backoutCode, object userData) { } public static int GetHashCode(object o) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static object GetObjectValue(object obj) { throw null; } public static object GetUninitializedObject(System.Type type) { throw null; } public static void InitializeArray(System.Array array, System.RuntimeFieldHandle fldHandle) { } public static bool IsReferenceOrContainsReferences() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void PrepareConstrainedRegions() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void PrepareConstrainedRegionsNoOP() { } [System.Security.SecurityCriticalAttribute] public static void PrepareContractedDelegate(System.Delegate d) { } [System.Security.SecurityCriticalAttribute] public static void PrepareDelegate(System.Delegate d) { } public static void PrepareMethod(System.RuntimeMethodHandle method) { } public static void PrepareMethod(System.RuntimeMethodHandle method, System.RuntimeTypeHandle[] instantiation) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void ProbeForSufficientStack() { } public static void RunClassConstructor(System.RuntimeTypeHandle type) { } public static void RunModuleConstructor(System.ModuleHandle module) { } public static bool TryEnsureSufficientExecutionStack() { throw null; } public delegate void CleanupCode(object userData, bool exceptionThrown); public delegate void TryCode(object userData); } [System.SerializableAttribute] public sealed partial class RuntimeWrappedException : System.Exception { public RuntimeWrappedException(object thrownObject) { } public object WrappedException { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Enum)] [System.SerializableAttribute] public sealed partial class ScopelessEnumAttribute : System.Attribute { public ScopelessEnumAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Event | System.AttributeTargets.Field | System.AttributeTargets.Method | System.AttributeTargets.Property | System.AttributeTargets.Struct)] public sealed partial class SpecialNameAttribute : System.Attribute { public SpecialNameAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false, AllowMultiple=false)] [System.SerializableAttribute] public partial class StateMachineAttribute : System.Attribute { public StateMachineAttribute(System.Type stateMachineType) { } public System.Type StateMachineType { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] [System.SerializableAttribute] public sealed partial class StringFreezingAttribute : System.Attribute { public StringFreezingAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Module)] public sealed partial class SuppressIldasmAttribute : System.Attribute { public SuppressIldasmAttribute() { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct TaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; public bool IsCompleted { get { throw null; } } public void GetResult() { } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct TaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; public bool IsCompleted { get { throw null; } } public TResult GetResult() { throw null; } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Event | System.AttributeTargets.Field | System.AttributeTargets.Parameter | System.AttributeTargets.Property | System.AttributeTargets.ReturnValue | System.AttributeTargets.Struct)] [System.CLSCompliantAttribute(false)] public sealed partial class TupleElementNamesAttribute : System.Attribute { public TupleElementNamesAttribute(string[] transformNames) { } public System.Collections.Generic.IList TransformNames { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct, Inherited=false, AllowMultiple=false)] public sealed partial class TypeForwardedFromAttribute : System.Attribute { public TypeForwardedFromAttribute(string assemblyFullName) { } public string AssemblyFullName { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true, Inherited=false)] public sealed partial class TypeForwardedToAttribute : System.Attribute { public TypeForwardedToAttribute(System.Type destination) { } public System.Type Destination { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Struct)] [System.SerializableAttribute] public sealed partial class UnsafeValueTypeAttribute : System.Attribute { public UnsafeValueTypeAttribute() { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ValueTaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; public bool IsCompleted { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void GetResult() { } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ValueTaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { private readonly object _dummy; public bool IsCompleted { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public TResult GetResult() { throw null; } public void OnCompleted(System.Action continuation) { } public void UnsafeOnCompleted(System.Action continuation) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Size=1)] public partial struct YieldAwaitable { public System.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter GetAwaiter() { throw null; } [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Size=1)] public partial struct YieldAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion, System.Runtime.CompilerServices.INotifyCompletion { public bool IsCompleted { get { throw null; } } public void GetResult() { } [System.Security.SecuritySafeCriticalAttribute] public void OnCompleted(System.Action continuation) { } [System.Security.SecurityCriticalAttribute] public void UnsafeOnCompleted(System.Action continuation) { } } } } namespace System.Runtime.ConstrainedExecution { public enum Cer { MayFail = 1, None = 0, Success = 2, } public enum Consistency { MayCorruptAppDomain = 1, MayCorruptInstance = 2, MayCorruptProcess = 0, WillNotCorruptState = 3, } public abstract partial class CriticalFinalizerObject { protected CriticalFinalizerObject() { } ~CriticalFinalizerObject() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor | System.AttributeTargets.Method, Inherited=false)] public sealed partial class PrePrepareMethodAttribute : System.Attribute { public PrePrepareMethodAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Struct, Inherited=false)] public sealed partial class ReliabilityContractAttribute : System.Attribute { public ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency consistencyGuarantee, System.Runtime.ConstrainedExecution.Cer cer) { } public System.Runtime.ConstrainedExecution.Cer Cer { get { throw null; } } public System.Runtime.ConstrainedExecution.Consistency ConsistencyGuarantee { get { throw null; } } } } namespace System.Runtime.ExceptionServices { public sealed partial class ExceptionDispatchInfo { internal ExceptionDispatchInfo() { } public System.Exception SourceException { get { throw null; } } public static System.Runtime.ExceptionServices.ExceptionDispatchInfo Capture(System.Exception source) { throw null; } public void Throw() { } public static void Throw(System.Exception source) { } } public partial class FirstChanceExceptionEventArgs : System.EventArgs { public FirstChanceExceptionEventArgs(System.Exception exception) { } public System.Exception Exception { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)] public sealed partial class HandleProcessCorruptedStateExceptionsAttribute : System.Attribute { public HandleProcessCorruptedStateExceptionsAttribute() { } } } namespace System.Runtime.Hosting { [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ActivationArguments : System.Security.Policy.EvidenceBase { public ActivationArguments(System.ActivationContext activationData) { } public ActivationArguments(System.ActivationContext activationContext, string[] activationData) { } public ActivationArguments(System.ApplicationIdentity applicationIdentity) { } public ActivationArguments(System.ApplicationIdentity applicationIdentity, string[] activationData) { } public System.ActivationContext ActivationContext { get { throw null; } } public string[] ActivationData { get { throw null; } } public System.ApplicationIdentity ApplicationIdentity { get { throw null; } } } [System.MonoTODOAttribute("missing manifest support")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ApplicationActivator { public ApplicationActivator() { } public virtual System.Runtime.Remoting.ObjectHandle CreateInstance(System.ActivationContext activationContext) { throw null; } public virtual System.Runtime.Remoting.ObjectHandle CreateInstance(System.ActivationContext activationContext, string[] activationCustomData) { throw null; } protected static System.Runtime.Remoting.ObjectHandle CreateInstanceHelper(System.AppDomainSetup adSetup) { throw null; } } } namespace System.Runtime.InteropServices { [System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)] public sealed partial class AllowReversePInvokeCallsAttribute : System.Attribute { public AllowReversePInvokeCallsAttribute() { } } public enum Architecture { Arm = 2, Arm64 = 3, X64 = 1, X86 = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct ArrayWithOffset { private object _dummy; private int _dummyPrimitive; [System.Security.SecuritySafeCriticalAttribute] public ArrayWithOffset(object array, int offset) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.Runtime.InteropServices.ArrayWithOffset obj) { throw null; } public object GetArray() { throw null; } public override int GetHashCode() { throw null; } public int GetOffset() { throw null; } public static bool operator ==(System.Runtime.InteropServices.ArrayWithOffset a, System.Runtime.InteropServices.ArrayWithOffset b) { throw null; } public static bool operator !=(System.Runtime.InteropServices.ArrayWithOffset a, System.Runtime.InteropServices.ArrayWithOffset b) { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum AssemblyRegistrationFlags { None = 0, SetCodeBase = 1, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Interface, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class AutomationProxyAttribute : System.Attribute { public AutomationProxyAttribute(bool val) { } public bool Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Struct, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class BestFitMappingAttribute : System.Attribute { public bool ThrowOnUnmappableChar; public BestFitMappingAttribute(bool BestFitMapping) { } public bool BestFitMapping { get { throw null; } } } [System.ObsoleteAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct BINDPTR { [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lpfuncdesc; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lptcomp; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lpvardesc; } [System.ObsoleteAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct BIND_OPTS { public int cbStruct; public int dwTickCountDeadline; public int grfFlags; public int grfMode; } public sealed partial class BStrWrapper { public BStrWrapper(object value) { } public BStrWrapper(string value) { } public string WrappedObject { get { throw null; } } } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.CALLCONV instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum CALLCONV { CC_CDECL = 1, CC_MACPASCAL = 3, CC_MAX = 9, CC_MPWCDECL = 7, CC_MPWPASCAL = 8, CC_MSCPASCAL = 2, CC_PASCAL = 2, CC_RESERVED = 5, CC_STDCALL = 4, CC_SYSCALL = 6, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum CallingConvention { Cdecl = 2, FastCall = 5, StdCall = 3, ThisCall = 4, Winapi = 1, } public enum CharSet { Ansi = 2, Auto = 4, None = 1, Unicode = 3, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ClassInterfaceAttribute : System.Attribute { public ClassInterfaceAttribute(short classInterfaceType) { } public ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType classInterfaceType) { } public System.Runtime.InteropServices.ClassInterfaceType Value { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum ClassInterfaceType { AutoDispatch = 1, AutoDual = 2, None = 0, } [System.AttributeUsageAttribute(System.AttributeTargets.Interface, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class CoClassAttribute : System.Attribute { public CoClassAttribute(System.Type coClass) { } public System.Type CoClass { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter | System.AttributeTargets.Property | System.AttributeTargets.ReturnValue, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComAliasNameAttribute : System.Attribute { public ComAliasNameAttribute(string alias) { } public string Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComCompatibleVersionAttribute : System.Attribute { public ComCompatibleVersionAttribute(int major, int minor, int build, int revision) { } public int BuildNumber { get { throw null; } } public int MajorVersion { get { throw null; } } public int MinorVersion { get { throw null; } } public int RevisionNumber { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.All, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComConversionLossAttribute : System.Attribute { public ComConversionLossAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComDefaultInterfaceAttribute : System.Attribute { public ComDefaultInterfaceAttribute(System.Type defaultInterface) { } public System.Type Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Interface, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComEventInterfaceAttribute : System.Attribute { public ComEventInterfaceAttribute(System.Type SourceInterface, System.Type EventProvider) { } public System.Type EventProvider { get { throw null; } } public System.Type SourceInterface { get { throw null; } } } public static partial class ComEventsHelper { [System.MonoTODOAttribute] public static void Combine(object rcw, System.Guid iid, int dispid, System.Delegate d) { } [System.MonoTODOAttribute] public static System.Delegate Remove(object rcw, System.Guid iid, int dispid, System.Delegate d) { throw null; } } [System.SerializableAttribute] public partial class COMException : System.Runtime.InteropServices.ExternalException { public COMException() { } protected COMException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public COMException(string message) { } public COMException(string message, System.Exception inner) { } public COMException(string message, int errorCode) { } public override string ToString() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Interface, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComImportAttribute : System.Attribute { public ComImportAttribute() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum ComInterfaceType { InterfaceIsDual = 0, InterfaceIsIDispatch = 2, [System.Runtime.InteropServices.ComVisibleAttribute(false)] InterfaceIsIInspectable = 3, InterfaceIsIUnknown = 1, } public enum ComMemberType { Method = 0, PropGet = 1, PropSet = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComRegisterFunctionAttribute : System.Attribute { public ComRegisterFunctionAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComSourceInterfacesAttribute : System.Attribute { public ComSourceInterfacesAttribute(string sourceInterfaces) { } public ComSourceInterfacesAttribute(System.Type sourceInterface) { } public ComSourceInterfacesAttribute(System.Type sourceInterface1, System.Type sourceInterface2) { } public ComSourceInterfacesAttribute(System.Type sourceInterface1, System.Type sourceInterface2, System.Type sourceInterface3) { } public ComSourceInterfacesAttribute(System.Type sourceInterface1, System.Type sourceInterface2, System.Type sourceInterface3, System.Type sourceInterface4) { } public string Value { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComUnregisterFunctionAttribute : System.Attribute { public ComUnregisterFunctionAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Field | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Property | System.AttributeTargets.Struct, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ComVisibleAttribute : System.Attribute { public ComVisibleAttribute(bool visibility) { } public bool Value { get { throw null; } } } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.CONNECTDATA instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct CONNECTDATA { public int dwCookie; [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)] public object pUnk; } [System.Security.SecurityCriticalAttribute] public abstract partial class CriticalHandle : System.Runtime.ConstrainedExecution.CriticalFinalizerObject, System.IDisposable { protected System.IntPtr handle; [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] protected CriticalHandle(System.IntPtr invalidHandleValue) { } public bool IsClosed { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public abstract bool IsInvalid { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecurityCriticalAttribute] public void Close() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecuritySafeCriticalAttribute] public void Dispose() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecurityCriticalAttribute] protected virtual void Dispose(bool disposing) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecuritySafeCriticalAttribute] ~CriticalHandle() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] protected abstract bool ReleaseHandle(); [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] protected void SetHandle(System.IntPtr handle) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public void SetHandleAsInvalid() { } } public sealed partial class CurrencyWrapper { public CurrencyWrapper(decimal obj) { } public CurrencyWrapper(object obj) { } public decimal WrappedObject { get { throw null; } } } public enum CustomQueryInterfaceMode { Allow = 1, Ignore = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.SerializableAttribute] public enum CustomQueryInterfaceResult { Failed = 2, Handled = 0, NotHandled = 1, } [System.AttributeUsageAttribute(System.AttributeTargets.Module, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DefaultCharSetAttribute : System.Attribute { public DefaultCharSetAttribute(System.Runtime.InteropServices.CharSet charSet) { } public System.Runtime.InteropServices.CharSet CharSet { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Method, AllowMultiple=false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public sealed partial class DefaultDllImportSearchPathsAttribute : System.Attribute { public DefaultDllImportSearchPathsAttribute(System.Runtime.InteropServices.DllImportSearchPath paths) { } public System.Runtime.InteropServices.DllImportSearchPath Paths { get { throw null; } } } [System.ObsoleteAttribute] [System.SerializableAttribute] public enum DESCKIND { DESCKIND_FUNCDESC = 1, DESCKIND_IMPLICITAPPOBJ = 4, DESCKIND_MAX = 5, DESCKIND_NONE = 0, DESCKIND_TYPECOMP = 3, DESCKIND_VARDESC = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class DispatchWrapper { [System.Security.SecuritySafeCriticalAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public DispatchWrapper(object obj) { } public object WrappedObject { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Event | System.AttributeTargets.Field | System.AttributeTargets.Method | System.AttributeTargets.Property, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DispIdAttribute : System.Attribute { public DispIdAttribute(int dispId) { } public int Value { get { throw null; } } } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.DISPPARAMS instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct DISPPARAMS { public int cArgs; public int cNamedArgs; public System.IntPtr rgdispidNamedArgs; public System.IntPtr rgvarg; } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DllImportAttribute : System.Attribute { public bool BestFitMapping; public System.Runtime.InteropServices.CallingConvention CallingConvention; public System.Runtime.InteropServices.CharSet CharSet; public string EntryPoint; public bool ExactSpelling; public bool PreserveSig; public bool SetLastError; public bool ThrowOnUnmappableChar; public DllImportAttribute(string dllName) { } public string Value { get { throw null; } } } [System.FlagsAttribute] public enum DllImportSearchPath { ApplicationDirectory = 512, AssemblyDirectory = 2, LegacyBehavior = 0, SafeDirectories = 4096, System32 = 2048, UseDllDirectoryForDependencies = 256, UserDirectories = 1024, } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.ELEMDESC instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct ELEMDESC { public System.Runtime.InteropServices.ELEMDESC.DESCUNION desc; public System.Runtime.InteropServices.TYPEDESC tdesc; [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct DESCUNION { [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.Runtime.InteropServices.IDLDESC idldesc; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.Runtime.InteropServices.PARAMDESC paramdesc; } } public sealed partial class ErrorWrapper { public ErrorWrapper(System.Exception e) { } public ErrorWrapper(int errorCode) { } public ErrorWrapper(object errorCode) { } public int ErrorCode { get { throw null; } } } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.EXCEPINFO instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct EXCEPINFO { [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)] public string bstrDescription; [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)] public string bstrHelpFile; [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)] public string bstrSource; public int dwHelpContext; public System.IntPtr pfnDeferredFillIn; public System.IntPtr pvReserved; public short wCode; public short wReserved; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum ExporterEventKind { ERROR_REFTOINVALIDASSEMBLY = 2, NOTIF_CONVERTWARNING = 1, NOTIF_TYPECONVERTED = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ExtensibleClassFactory { internal ExtensibleClassFactory() { } public static void RegisterObjectCreationCallback(System.Runtime.InteropServices.ObjectCreationDelegate callback) { } } [System.SerializableAttribute] public partial class ExternalException : System.SystemException { public ExternalException() { } protected ExternalException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ExternalException(string message) { } public ExternalException(string message, System.Exception inner) { } public ExternalException(string message, int errorCode) { } public virtual int ErrorCode { get { throw null; } } public override string ToString() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Field, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class FieldOffsetAttribute : System.Attribute { public FieldOffsetAttribute(int offset) { } public int Value { get { throw null; } } } [System.ObsoleteAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct FILETIME { public int dwHighDateTime; public int dwLowDateTime; } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCDESC instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct FUNCDESC { public System.Runtime.InteropServices.CALLCONV callconv; public short cParams; public short cParamsOpt; public short cScodes; public System.Runtime.InteropServices.ELEMDESC elemdescFunc; public System.Runtime.InteropServices.FUNCKIND funckind; public System.Runtime.InteropServices.INVOKEKIND invkind; public System.IntPtr lprgelemdescParam; public System.IntPtr lprgscode; public int memid; public short oVft; public short wFuncFlags; } [System.FlagsAttribute] [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCFLAGS instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum FUNCFLAGS : short { FUNCFLAG_FBINDABLE = (short)4, FUNCFLAG_FDEFAULTBIND = (short)32, FUNCFLAG_FDEFAULTCOLLELEM = (short)256, FUNCFLAG_FDISPLAYBIND = (short)16, FUNCFLAG_FHIDDEN = (short)64, FUNCFLAG_FIMMEDIATEBIND = (short)4096, FUNCFLAG_FNONBROWSABLE = (short)1024, FUNCFLAG_FREPLACEABLE = (short)2048, FUNCFLAG_FREQUESTEDIT = (short)8, FUNCFLAG_FRESTRICTED = (short)1, FUNCFLAG_FSOURCE = (short)2, FUNCFLAG_FUIDEFAULT = (short)512, FUNCFLAG_FUSESGETLASTERROR = (short)128, } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum FUNCKIND { FUNC_DISPATCH = 4, FUNC_NONVIRTUAL = 2, FUNC_PUREVIRTUAL = 1, FUNC_STATIC = 3, FUNC_VIRTUAL = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct GCHandle { private int _dummyPrimitive; public bool IsAllocated { get { throw null; } } public object Target { get { throw null; } set { } } public System.IntPtr AddrOfPinnedObject() { throw null; } public static System.Runtime.InteropServices.GCHandle Alloc(object value) { throw null; } public static System.Runtime.InteropServices.GCHandle Alloc(object value, System.Runtime.InteropServices.GCHandleType type) { throw null; } public override bool Equals(object o) { throw null; } public void Free() { } public static System.Runtime.InteropServices.GCHandle FromIntPtr(System.IntPtr value) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Runtime.InteropServices.GCHandle a, System.Runtime.InteropServices.GCHandle b) { throw null; } public static explicit operator System.Runtime.InteropServices.GCHandle (System.IntPtr value) { throw null; } public static explicit operator System.IntPtr (System.Runtime.InteropServices.GCHandle value) { throw null; } public static bool operator !=(System.Runtime.InteropServices.GCHandle a, System.Runtime.InteropServices.GCHandle b) { throw null; } public static System.IntPtr ToIntPtr(System.Runtime.InteropServices.GCHandle value) { throw null; } } public enum GCHandleType { Normal = 2, Pinned = 3, Weak = 0, WeakTrackResurrection = 1, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class GuidAttribute : System.Attribute { public GuidAttribute(string guid) { } public string Value { get { throw null; } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct HandleRef { private readonly object _dummy; private readonly int _dummyPrimitive; public HandleRef(object wrapper, System.IntPtr handle) { throw null; } public System.IntPtr Handle { get { throw null; } } public object Wrapper { get { throw null; } } public static explicit operator System.IntPtr (System.Runtime.InteropServices.HandleRef value) { throw null; } public static System.IntPtr ToIntPtr(System.Runtime.InteropServices.HandleRef value) { throw null; } } public partial interface ICustomAdapter { [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)] object GetUnderlyingObject(); } public partial interface ICustomFactory { System.MarshalByRefObject CreateInstance(System.Type serverType); } public partial interface ICustomMarshaler { void CleanUpManagedData(object ManagedObj); void CleanUpNativeData(System.IntPtr pNativeData); int GetNativeDataSize(); System.IntPtr MarshalManagedToNative(object ManagedObj); object MarshalNativeToManaged(System.IntPtr pNativeData); } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public partial interface ICustomQueryInterface { [System.Security.SecurityCriticalAttribute] System.Runtime.InteropServices.CustomQueryInterfaceResult GetInterface([System.Runtime.InteropServices.In]ref System.Guid iid, out System.IntPtr ppv); } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class, Inherited=false)] [System.ObsoleteAttribute("This attribute is deprecated and will be removed in a future version.", false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class IDispatchImplAttribute : System.Attribute { public IDispatchImplAttribute(short implType) { } public IDispatchImplAttribute(System.Runtime.InteropServices.IDispatchImplType implType) { } public System.Runtime.InteropServices.IDispatchImplType Value { get { throw null; } } } [System.ObsoleteAttribute("The IDispatchImplAttribute is deprecated.", false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum IDispatchImplType { CompatibleImpl = 2, InternalImpl = 1, SystemDefinedImpl = 0, } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.IDLDESC instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct IDLDESC { public int dwReserved; public System.Runtime.InteropServices.IDLFLAG wIDLFlags; } [System.FlagsAttribute] [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.IDLFLAG instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum IDLFLAG : short { IDLFLAG_FIN = (short)1, IDLFLAG_FLCID = (short)4, IDLFLAG_FOUT = (short)2, IDLFLAG_FRETVAL = (short)8, IDLFLAG_NONE = (short)0, } [System.FlagsAttribute] [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum IMPLTYPEFLAGS { IMPLTYPEFLAG_FDEFAULT = 1, IMPLTYPEFLAG_FDEFAULTVTABLE = 8, IMPLTYPEFLAG_FRESTRICTED = 4, IMPLTYPEFLAG_FSOURCE = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ImportedFromTypeLibAttribute : System.Attribute { public ImportedFromTypeLibAttribute(string tlbFile) { } public string Value { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum ImporterEventKind { ERROR_REFTOINVALIDTYPELIB = 2, NOTIF_CONVERTWARNING = 1, NOTIF_TYPECONVERTED = 0, } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class InAttribute : System.Attribute { public InAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Interface, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class InterfaceTypeAttribute : System.Attribute { public InterfaceTypeAttribute(short interfaceType) { } public InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType interfaceType) { } public System.Runtime.InteropServices.ComInterfaceType Value { get { throw null; } } } [System.SerializableAttribute] public partial class InvalidComObjectException : System.SystemException { public InvalidComObjectException() { } protected InvalidComObjectException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public InvalidComObjectException(string message) { } public InvalidComObjectException(string message, System.Exception inner) { } } [System.SerializableAttribute] public partial class InvalidOleVariantTypeException : System.SystemException { public InvalidOleVariantTypeException() { } protected InvalidOleVariantTypeException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public InvalidOleVariantTypeException(string message) { } public InvalidOleVariantTypeException(string message, System.Exception inner) { } } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.INVOKEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum INVOKEKIND { INVOKE_FUNC = 1, INVOKE_PROPERTYGET = 2, INVOKE_PROPERTYPUT = 4, INVOKE_PROPERTYPUTREF = 8, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("CCBD682C-73A5-4568-B8B0-C7007E11ABA2")] public partial interface IRegistrationServices { System.Guid GetManagedCategoryGuid(); [System.Security.SecurityCriticalAttribute] string GetProgIdForType(System.Type type); [System.Security.SecurityCriticalAttribute] System.Type[] GetRegistrableTypesInAssembly(System.Reflection.Assembly assembly); [System.Security.SecurityCriticalAttribute] bool RegisterAssembly(System.Reflection.Assembly assembly, System.Runtime.InteropServices.AssemblyRegistrationFlags flags); [System.Security.SecurityCriticalAttribute] void RegisterTypeForComClients(System.Type type, ref System.Guid g); bool TypeRepresentsComType(System.Type type); [System.Security.SecurityCriticalAttribute] bool TypeRequiresRegistration(System.Type type); [System.Security.SecurityCriticalAttribute] bool UnregisterAssembly(System.Reflection.Assembly assembly); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("F1C3BF78-C3E4-11D3-88E7-00902754C43A")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeLibConverter { [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)] object ConvertAssemblyToTypeLib(System.Reflection.Assembly assembly, string typeLibName, System.Runtime.InteropServices.TypeLibExporterFlags flags, System.Runtime.InteropServices.ITypeLibExporterNotifySink notifySink); System.Reflection.Emit.AssemblyBuilder ConvertTypeLibToAssembly([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object typeLib, string asmFileName, int flags, System.Runtime.InteropServices.ITypeLibImporterNotifySink notifySink, byte[] publicKey, System.Reflection.StrongNameKeyPair keyPair, bool unsafeInterfaces); System.Reflection.Emit.AssemblyBuilder ConvertTypeLibToAssembly([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object typeLib, string asmFileName, System.Runtime.InteropServices.TypeLibImporterFlags flags, System.Runtime.InteropServices.ITypeLibImporterNotifySink notifySink, byte[] publicKey, System.Reflection.StrongNameKeyPair keyPair, string asmNamespace, System.Version asmVersion); bool GetPrimaryInteropAssembly(System.Guid g, int major, int minor, int lcid, out string asmName, out string asmCodeBase); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("fa1f3615-acb9-486d-9eac-1bef87e36b09")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeLibExporterNameProvider { [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.SafeArray)] string[] GetNames(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("f1c3bf77-c3e4-11d3-88e7-00902754c43a")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeLibExporterNotifySink { void ReportEvent(System.Runtime.InteropServices.ExporterEventKind eventKind, int eventCode, string eventMsg); [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)] object ResolveRef(System.Reflection.Assembly assembly); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("f1c3bf76-c3e4-11d3-88e7-00902754c43a")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeLibImporterNotifySink { void ReportEvent(System.Runtime.InteropServices.ImporterEventKind eventKind, int eventCode, string eventMsg); System.Reflection.Assembly ResolveRef([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object typeLib); } public enum LayoutKind { Auto = 3, Explicit = 2, Sequential = 0, } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class LCIDConversionAttribute : System.Attribute { public LCIDConversionAttribute(int lcid) { } public int Value { get { throw null; } } } [System.FlagsAttribute] [System.ObsoleteAttribute] [System.SerializableAttribute] public enum LIBFLAGS : short { LIBFLAG_FCONTROL = (short)2, LIBFLAG_FHASDISKIMAGE = (short)8, LIBFLAG_FHIDDEN = (short)4, LIBFLAG_FRESTRICTED = (short)1, } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public sealed partial class ManagedToNativeComInteropStubAttribute : System.Attribute { public ManagedToNativeComInteropStubAttribute(System.Type classType, string methodName) { } public System.Type ClassType { get { throw null; } } public string MethodName { get { throw null; } } } public static partial class Marshal { public static readonly int SystemDefaultCharSize; public static readonly int SystemMaxDBCSCharSize; public static int AddRef(System.IntPtr pUnk) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.IntPtr AllocCoTaskMem(int cb) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static System.IntPtr AllocHGlobal(int cb) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static System.IntPtr AllocHGlobal(System.IntPtr cb) { throw null; } public static bool AreComObjectsAvailableForCleanup() { throw null; } public static object BindToMoniker(string monikerName) { throw null; } public static void ChangeWrapperHandleStrength(object otp, bool fIsWeak) { } public static void CleanupUnusedObjectsInCurrentContext() { } public static void Copy(byte[] source, int startIndex, System.IntPtr destination, int length) { } public static void Copy(char[] source, int startIndex, System.IntPtr destination, int length) { } public static void Copy(double[] source, int startIndex, System.IntPtr destination, int length) { } public static void Copy(short[] source, int startIndex, System.IntPtr destination, int length) { } public static void Copy(int[] source, int startIndex, System.IntPtr destination, int length) { } public static void Copy(long[] source, int startIndex, System.IntPtr destination, int length) { } public static void Copy(System.IntPtr source, byte[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr source, char[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr source, double[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr source, short[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr source, int[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr source, long[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr source, System.IntPtr[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr source, float[] destination, int startIndex, int length) { } public static void Copy(System.IntPtr[] source, int startIndex, System.IntPtr destination, int length) { } public static void Copy(float[] source, int startIndex, System.IntPtr destination, int length) { } public static System.IntPtr CreateAggregatedObject(System.IntPtr pOuter, object o) { throw null; } public static System.IntPtr CreateAggregatedObject(System.IntPtr pOuter, T o) { throw null; } public static object CreateWrapperOfType(object o, System.Type t) { throw null; } public static TWrapper CreateWrapperOfType(T o) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.InteropServices.ComVisibleAttribute(true)] public static void DestroyStructure(System.IntPtr ptr, System.Type structuretype) { } public static void DestroyStructure(System.IntPtr ptr) { } public static int FinalReleaseComObject(object o) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void FreeBSTR(System.IntPtr ptr) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void FreeCoTaskMem(System.IntPtr ptr) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void FreeHGlobal(System.IntPtr hglobal) { } public static System.Guid GenerateGuidForType(System.Type type) { throw null; } public static string GenerateProgIdForType(System.Type type) { throw null; } public static object GetActiveObject(string progID) { throw null; } public static System.IntPtr GetComInterfaceForObject(object o, System.Type T) { throw null; } public static System.IntPtr GetComInterfaceForObject(object o, System.Type T, System.Runtime.InteropServices.CustomQueryInterfaceMode mode) { throw null; } public static System.IntPtr GetComInterfaceForObjectInContext(object o, System.Type t) { throw null; } public static System.IntPtr GetComInterfaceForObject(T o) { throw null; } public static object GetComObjectData(object obj, object key) { throw null; } public static int GetComSlotForMethodInfo(System.Reflection.MemberInfo m) { throw null; } public static System.Delegate GetDelegateForFunctionPointer(System.IntPtr ptr, System.Type t) { throw null; } public static TDelegate GetDelegateForFunctionPointer(System.IntPtr ptr) { throw null; } public static int GetEndComSlot(System.Type t) { throw null; } public static int GetExceptionCode() { throw null; } public static System.Exception GetExceptionForHR(int errorCode) { throw null; } public static System.Exception GetExceptionForHR(int errorCode, System.IntPtr errorInfo) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static System.IntPtr GetExceptionPointers() { throw null; } public static System.IntPtr GetFunctionPointerForDelegate(System.Delegate d) { throw null; } public static System.IntPtr GetFunctionPointerForDelegate(TDelegate d) { throw null; } public static System.IntPtr GetHINSTANCE(System.Reflection.Module m) { throw null; } public static int GetHRForException(System.Exception e) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int GetHRForLastWin32Error() { throw null; } public static System.IntPtr GetIDispatchForObject(object o) { throw null; } public static System.IntPtr GetIDispatchForObjectInContext(object o) { throw null; } public static System.IntPtr GetITypeInfoForType(System.Type t) { throw null; } public static System.IntPtr GetIUnknownForObject(object o) { throw null; } public static System.IntPtr GetIUnknownForObjectInContext(object o) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int GetLastWin32Error() { throw null; } [System.ObsoleteAttribute("This method has been deprecated")] public static System.IntPtr GetManagedThunkForUnmanagedMethodPtr(System.IntPtr pfnMethodToWrap, System.IntPtr pbSignature, int cbSignature) { throw null; } public static System.Reflection.MemberInfo GetMethodInfoForComSlot(System.Type t, int slot, ref System.Runtime.InteropServices.ComMemberType memberType) { throw null; } public static void GetNativeVariantForObject(object obj, System.IntPtr pDstNativeVariant) { } public static void GetNativeVariantForObject(T obj, System.IntPtr pDstNativeVariant) { } public static object GetObjectForIUnknown(System.IntPtr pUnk) { throw null; } public static object GetObjectForNativeVariant(System.IntPtr pSrcNativeVariant) { throw null; } public static T GetObjectForNativeVariant(System.IntPtr pSrcNativeVariant) { throw null; } public static object[] GetObjectsForNativeVariants(System.IntPtr aSrcNativeVariant, int cVars) { throw null; } public static T[] GetObjectsForNativeVariants(System.IntPtr aSrcNativeVariant, int cVars) { throw null; } public static int GetStartComSlot(System.Type t) { throw null; } [System.ObsoleteAttribute("This method has been deprecated")] public static System.Threading.Thread GetThreadFromFiberCookie(int cookie) { throw null; } public static object GetTypedObjectForIUnknown(System.IntPtr pUnk, System.Type t) { throw null; } public static System.Type GetTypeForITypeInfo(System.IntPtr piTypeInfo) { throw null; } public static System.Type GetTypeFromCLSID(System.Guid clsid) { throw null; } public static string GetTypeInfoName(System.Runtime.InteropServices.ComTypes.ITypeInfo typeInfo) { throw null; } [System.ObsoleteAttribute] public static string GetTypeInfoName(System.Runtime.InteropServices.UCOMITypeInfo pTI) { throw null; } public static System.Guid GetTypeLibGuid(System.Runtime.InteropServices.ComTypes.ITypeLib typelib) { throw null; } [System.ObsoleteAttribute] public static System.Guid GetTypeLibGuid(System.Runtime.InteropServices.UCOMITypeLib pTLB) { throw null; } public static System.Guid GetTypeLibGuidForAssembly(System.Reflection.Assembly asm) { throw null; } public static int GetTypeLibLcid(System.Runtime.InteropServices.ComTypes.ITypeLib typelib) { throw null; } [System.ObsoleteAttribute] public static int GetTypeLibLcid(System.Runtime.InteropServices.UCOMITypeLib pTLB) { throw null; } public static string GetTypeLibName(System.Runtime.InteropServices.ComTypes.ITypeLib typelib) { throw null; } [System.ObsoleteAttribute] public static string GetTypeLibName(System.Runtime.InteropServices.UCOMITypeLib pTLB) { throw null; } public static void GetTypeLibVersionForAssembly(System.Reflection.Assembly inputAssembly, out int majorVersion, out int minorVersion) { throw null; } public static object GetUniqueObjectForIUnknown(System.IntPtr unknown) { throw null; } [System.ObsoleteAttribute("This method has been deprecated")] public static System.IntPtr GetUnmanagedThunkForManagedMethodPtr(System.IntPtr pfnMethodToWrap, System.IntPtr pbSignature, int cbSignature) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static bool IsComObject(object o) { throw null; } public static bool IsTypeVisibleFromCom(System.Type t) { throw null; } public static int NumParamBytes(System.Reflection.MethodInfo m) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.IntPtr OffsetOf(System.Type t, string fieldName) { throw null; } public static System.IntPtr OffsetOf(string fieldName) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void Prelink(System.Reflection.MethodInfo m) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void PrelinkAll(System.Type c) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static string PtrToStringAnsi(System.IntPtr ptr) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static string PtrToStringAnsi(System.IntPtr ptr, int len) { throw null; } public static string PtrToStringAuto(System.IntPtr ptr) { throw null; } public static string PtrToStringAuto(System.IntPtr ptr, int len) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static string PtrToStringBSTR(System.IntPtr ptr) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static string PtrToStringUni(System.IntPtr ptr) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static string PtrToStringUni(System.IntPtr ptr, int len) { throw null; } public static string PtrToStringUTF8(System.IntPtr ptr) { throw null; } public static string PtrToStringUTF8(System.IntPtr ptr, int byteLen) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.InteropServices.ComVisibleAttribute(true)] public static void PtrToStructure(System.IntPtr ptr, object structure) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.InteropServices.ComVisibleAttribute(true)] public static object PtrToStructure(System.IntPtr ptr, System.Type structureType) { throw null; } public static T PtrToStructure(System.IntPtr ptr) { throw null; } public static void PtrToStructure(System.IntPtr ptr, T structure) { } public static int QueryInterface(System.IntPtr pUnk, ref System.Guid iid, out System.IntPtr ppv) { throw null; } public static byte ReadByte(System.IntPtr ptr) { throw null; } public static byte ReadByte(System.IntPtr ptr, int ofs) { throw null; } [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static byte ReadByte([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs) { throw null; } public static short ReadInt16(System.IntPtr ptr) { throw null; } public static short ReadInt16(System.IntPtr ptr, int ofs) { throw null; } [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static short ReadInt16([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int ReadInt32(System.IntPtr ptr) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int ReadInt32(System.IntPtr ptr, int ofs) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static int ReadInt32([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static long ReadInt64(System.IntPtr ptr) { throw null; } public static long ReadInt64(System.IntPtr ptr, int ofs) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static long ReadInt64([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.IntPtr ReadIntPtr(System.IntPtr ptr) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.IntPtr ReadIntPtr(System.IntPtr ptr, int ofs) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.IntPtr ReadIntPtr([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.IntPtr ReAllocCoTaskMem(System.IntPtr pv, int cb) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.IntPtr ReAllocHGlobal(System.IntPtr pv, System.IntPtr cb) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int Release(System.IntPtr pUnk) { throw null; } public static int ReleaseComObject(object o) { throw null; } [System.ObsoleteAttribute] public static void ReleaseThreadCache() { } public static System.IntPtr SecureStringToBSTR(System.Security.SecureString s) { throw null; } public static System.IntPtr SecureStringToCoTaskMemAnsi(System.Security.SecureString s) { throw null; } public static System.IntPtr SecureStringToCoTaskMemUnicode(System.Security.SecureString s) { throw null; } public static System.IntPtr SecureStringToGlobalAllocAnsi(System.Security.SecureString s) { throw null; } public static System.IntPtr SecureStringToGlobalAllocUnicode(System.Security.SecureString s) { throw null; } public static bool SetComObjectData(object obj, object key, object data) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static int SizeOf(object structure) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static int SizeOf(System.Type t) { throw null; } public static int SizeOf() { throw null; } public static int SizeOf(T structure) { throw null; } public static System.IntPtr StringToAllocatedMemoryUTF8(string s) { throw null; } public static System.IntPtr StringToBSTR(string s) { throw null; } public static System.IntPtr StringToCoTaskMemAnsi(string s) { throw null; } public static System.IntPtr StringToCoTaskMemAuto(string s) { throw null; } public static System.IntPtr StringToCoTaskMemUni(string s) { throw null; } public static System.IntPtr StringToCoTaskMemUTF8(string s) { throw null; } public static System.IntPtr StringToHGlobalAnsi(string s) { throw null; } public static System.IntPtr StringToHGlobalAuto(string s) { throw null; } public static System.IntPtr StringToHGlobalUni(string s) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static void StructureToPtr(object structure, System.IntPtr ptr, bool fDeleteOld) { } public static void StructureToPtr(T structure, System.IntPtr ptr, bool fDeleteOld) { } public static void ThrowExceptionForHR(int errorCode) { } public static void ThrowExceptionForHR(int errorCode, System.IntPtr errorInfo) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.IntPtr UnsafeAddrOfPinnedArrayElement(System.Array arr, int index) { throw null; } public static System.IntPtr UnsafeAddrOfPinnedArrayElement(T[] arr, int index) { throw null; } public static void WriteByte(System.IntPtr ptr, byte val) { } public static void WriteByte(System.IntPtr ptr, int ofs, byte val) { } [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static void WriteByte([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs, byte val) { throw null; } public static void WriteInt16(System.IntPtr ptr, char val) { } public static void WriteInt16(System.IntPtr ptr, short val) { } public static void WriteInt16(System.IntPtr ptr, int ofs, char val) { } public static void WriteInt16(System.IntPtr ptr, int ofs, short val) { } public static void WriteInt16([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out]object ptr, int ofs, char val) { throw null; } [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static void WriteInt16([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs, short val) { throw null; } public static void WriteInt32(System.IntPtr ptr, int val) { } public static void WriteInt32(System.IntPtr ptr, int ofs, int val) { } [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static void WriteInt32([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs, int val) { throw null; } public static void WriteInt64(System.IntPtr ptr, int ofs, long val) { } public static void WriteInt64(System.IntPtr ptr, long val) { } [System.Security.SuppressUnmanagedCodeSecurityAttribute] public static void WriteInt64([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs, long val) { throw null; } public static void WriteIntPtr(System.IntPtr ptr, int ofs, System.IntPtr val) { } public static void WriteIntPtr(System.IntPtr ptr, System.IntPtr val) { } public static void WriteIntPtr([System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.AsAny)]object ptr, int ofs, System.IntPtr val) { throw null; } public static void ZeroFreeBSTR(System.IntPtr s) { } public static void ZeroFreeCoTaskMemAnsi(System.IntPtr s) { } public static void ZeroFreeCoTaskMemUnicode(System.IntPtr s) { } public static void ZeroFreeCoTaskMemUTF8(System.IntPtr s) { } public static void ZeroFreeGlobalAllocAnsi(System.IntPtr s) { } public static void ZeroFreeGlobalAllocUnicode(System.IntPtr s) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter | System.AttributeTargets.ReturnValue, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class MarshalAsAttribute : System.Attribute { public System.Runtime.InteropServices.UnmanagedType ArraySubType; public int IidParameterIndex; public string MarshalCookie; [System.Runtime.InteropServices.ComVisibleAttribute(true)] public string MarshalType; [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Type MarshalTypeRef; public System.Runtime.InteropServices.VarEnum SafeArraySubType; public System.Type SafeArrayUserDefinedSubType; public int SizeConst; public short SizeParamIndex; public MarshalAsAttribute(short unmanagedType) { } public MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType unmanagedType) { } public System.Runtime.InteropServices.UnmanagedType Value { get { throw null; } } } [System.SerializableAttribute] public partial class MarshalDirectiveException : System.SystemException { public MarshalDirectiveException() { } protected MarshalDirectiveException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public MarshalDirectiveException(string message) { } public MarshalDirectiveException(string message, System.Exception inner) { } } public static partial class MemoryMarshal { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.ReadOnlySpan AsBytes(System.ReadOnlySpan span) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span AsBytes(System.Span span) where T : struct { throw null; } public static System.Memory AsMemory(System.ReadOnlyMemory memory) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.ReadOnlySpan Cast(System.ReadOnlySpan span) where TFrom : struct where TTo : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span Cast(System.Span span) where TFrom : struct where TTo : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Memory CreateFromPinnedArray(T[] array, int start, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.ReadOnlySpan CreateReadOnlySpan(ref T reference, int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Span CreateSpan(ref T reference, int length) { throw null; } public static ref T GetReference(System.ReadOnlySpan span) { throw null; } public static ref T GetReference(System.Span span) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static T Read(System.ReadOnlySpan source) where T : struct { throw null; } public static System.Collections.Generic.IEnumerable ToEnumerable(System.ReadOnlyMemory memory) { throw null; } public static bool TryGetArray(System.ReadOnlyMemory memory, out System.ArraySegment segment) { throw null; } public static bool TryGetMemoryManager(System.ReadOnlyMemory memory, out TManager manager) where TManager : System.Buffers.MemoryManager { throw null; } public static bool TryGetMemoryManager(System.ReadOnlyMemory memory, out TManager manager, out int start, out int length) where TManager : System.Buffers.MemoryManager { throw null; } public static bool TryGetString(System.ReadOnlyMemory memory, out string text, out int start, out int length) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryRead(System.ReadOnlySpan source, out T value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static bool TryWrite(System.Span destination, ref T value) where T : struct { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static void Write(System.Span destination, ref T value) where T : struct { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate System.IntPtr ObjectCreationDelegate(System.IntPtr aggregator); [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class OptionalAttribute : System.Attribute { public OptionalAttribute() { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct OSPlatform : System.IEquatable { private readonly object _dummy; public static System.Runtime.InteropServices.OSPlatform Linux { get { throw null; } } public static System.Runtime.InteropServices.OSPlatform OSX { get { throw null; } } public static System.Runtime.InteropServices.OSPlatform Windows { get { throw null; } } public static System.Runtime.InteropServices.OSPlatform Create(string osPlatform) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.Runtime.InteropServices.OSPlatform other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Runtime.InteropServices.OSPlatform left, System.Runtime.InteropServices.OSPlatform right) { throw null; } public static bool operator !=(System.Runtime.InteropServices.OSPlatform left, System.Runtime.InteropServices.OSPlatform right) { throw null; } public override string ToString() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class OutAttribute : System.Attribute { public OutAttribute() { } } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.PARAMDESC instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct PARAMDESC { public System.IntPtr lpVarValue; public System.Runtime.InteropServices.PARAMFLAG wParamFlags; } [System.FlagsAttribute] [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.PARAMFLAG instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum PARAMFLAG : short { PARAMFLAG_FHASCUSTDATA = (short)64, PARAMFLAG_FHASDEFAULT = (short)32, PARAMFLAG_FIN = (short)1, PARAMFLAG_FLCID = (short)4, PARAMFLAG_FOPT = (short)16, PARAMFLAG_FOUT = (short)2, PARAMFLAG_FRETVAL = (short)8, PARAMFLAG_NONE = (short)0, } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class PreserveSigAttribute : System.Attribute { public PreserveSigAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false, AllowMultiple=true)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class PrimaryInteropAssemblyAttribute : System.Attribute { public PrimaryInteropAssemblyAttribute(int major, int minor) { } public int MajorVersion { get { throw null; } } public int MinorVersion { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ProgIdAttribute : System.Attribute { public ProgIdAttribute(string progId) { } public string Value { get { throw null; } } } [System.FlagsAttribute] public enum RegistrationClassContext { DisableActivateAsActivator = 32768, EnableActivateAsActivator = 65536, EnableCodeDownload = 8192, FromDefaultContext = 131072, InProcessHandler = 2, InProcessHandler16 = 32, InProcessServer = 1, InProcessServer16 = 8, LocalServer = 4, NoCodeDownload = 1024, NoCustomMarshal = 4096, NoFailureLog = 16384, RemoteServer = 16, Reserved1 = 64, Reserved2 = 128, Reserved3 = 256, Reserved4 = 512, Reserved5 = 2048, } [System.FlagsAttribute] public enum RegistrationConnectionType { MultipleUse = 1, MultiSeparate = 2, SingleUse = 0, Surrogate = 8, Suspended = 4, } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("475e398f-8afa-43a7-a3be-f4ef8d6787c9")] public partial class RegistrationServices : System.Runtime.InteropServices.IRegistrationServices { public RegistrationServices() { } public virtual System.Guid GetManagedCategoryGuid() { throw null; } public virtual string GetProgIdForType(System.Type type) { throw null; } [System.MonoTODOAttribute("implement")] public virtual System.Type[] GetRegistrableTypesInAssembly(System.Reflection.Assembly assembly) { throw null; } [System.MonoTODOAttribute("implement")] public virtual bool RegisterAssembly(System.Reflection.Assembly assembly, System.Runtime.InteropServices.AssemblyRegistrationFlags flags) { throw null; } [System.MonoTODOAttribute("implement")] public virtual void RegisterTypeForComClients(System.Type type, ref System.Guid g) { } [System.MonoTODOAttribute("implement")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual int RegisterTypeForComClients(System.Type type, System.Runtime.InteropServices.RegistrationClassContext classContext, System.Runtime.InteropServices.RegistrationConnectionType flags) { throw null; } [System.MonoTODOAttribute("implement")] public virtual bool TypeRepresentsComType(System.Type type) { throw null; } [System.MonoTODOAttribute("implement")] public virtual bool TypeRequiresRegistration(System.Type type) { throw null; } [System.MonoTODOAttribute("implement")] public virtual bool UnregisterAssembly(System.Reflection.Assembly assembly) { throw null; } [System.MonoTODOAttribute("implement")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual void UnregisterTypeForComClients(int cookie) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RuntimeEnvironment { [System.ObsoleteAttribute("Do not create instances of the RuntimeEnvironment class. Call the static methods directly on this type instead", true)] public RuntimeEnvironment() { } public static string SystemConfigurationFile { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } } public static bool FromGlobalAccessCache(System.Reflection.Assembly a) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static string GetRuntimeDirectory() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public static System.IntPtr GetRuntimeInterfaceAsIntPtr(System.Guid clsid, System.Guid riid) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public static object GetRuntimeInterfaceAsObject(System.Guid clsid, System.Guid riid) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static string GetSystemVersion() { throw null; } } public static partial class RuntimeInformation { public static string FrameworkDescription { get { throw null; } } public static System.Runtime.InteropServices.Architecture OSArchitecture { get { throw null; } } public static string OSDescription { get { throw null; } } public static System.Runtime.InteropServices.Architecture ProcessArchitecture { get { throw null; } } public static bool IsOSPlatform(System.Runtime.InteropServices.OSPlatform osPlatform) { throw null; } } [System.SerializableAttribute] public partial class SafeArrayRankMismatchException : System.SystemException { public SafeArrayRankMismatchException() { } protected SafeArrayRankMismatchException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SafeArrayRankMismatchException(string message) { } public SafeArrayRankMismatchException(string message, System.Exception inner) { } } [System.SerializableAttribute] public partial class SafeArrayTypeMismatchException : System.SystemException { public SafeArrayTypeMismatchException() { } protected SafeArrayTypeMismatchException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SafeArrayTypeMismatchException(string message) { } public SafeArrayTypeMismatchException(string message, System.Exception inner) { } } public abstract partial class SafeBuffer : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid { protected SafeBuffer(bool ownsHandle) : base (default(bool)) { } [System.CLSCompliantAttribute(false)] public ulong ByteLength { get { throw null; } } [System.CLSCompliantAttribute(false)] public unsafe void AcquirePointer(ref byte* pointer) { } [System.CLSCompliantAttribute(false)] public void Initialize(uint numElements, uint sizeOfEachElement) { } [System.CLSCompliantAttribute(false)] public void Initialize(ulong numBytes) { } [System.CLSCompliantAttribute(false)] public void Initialize(uint numElements) where T : struct { } [System.CLSCompliantAttribute(false)] public void ReadArray(ulong byteOffset, T[] array, int index, int count) where T : struct { } [System.CLSCompliantAttribute(false)] public T Read(ulong byteOffset) where T : struct { throw null; } public void ReleasePointer() { } [System.CLSCompliantAttribute(false)] public void WriteArray(ulong byteOffset, T[] array, int index, int count) where T : struct { } [System.CLSCompliantAttribute(false)] public void Write(ulong byteOffset, T value) where T : struct { } } [System.Security.SecurityCriticalAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class SafeHandle : System.Runtime.ConstrainedExecution.CriticalFinalizerObject, System.IDisposable { protected System.IntPtr handle; [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] protected SafeHandle(System.IntPtr invalidHandleValue, bool ownsHandle) { } public bool IsClosed { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public abstract bool IsInvalid { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecurityCriticalAttribute] public void Close() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public void DangerousAddRef(ref bool success) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public System.IntPtr DangerousGetHandle() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public void DangerousRelease() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecuritySafeCriticalAttribute] public void Dispose() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecurityCriticalAttribute] protected virtual void Dispose(bool disposing) { } [System.Security.SecuritySafeCriticalAttribute] ~SafeHandle() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] protected abstract bool ReleaseHandle(); [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] protected void SetHandle(System.IntPtr handle) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public void SetHandleAsInvalid() { } } [System.SerializableAttribute] public partial class SEHException : System.Runtime.InteropServices.ExternalException { public SEHException() { } protected SEHException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SEHException(string message) { } public SEHException(string message, System.Exception inner) { } public virtual bool CanResume() { throw null; } } public static partial class SequenceMarshal { public static bool TryGetArray(System.Buffers.ReadOnlySequence sequence, out System.ArraySegment segment) { throw null; } public static bool TryGetReadOnlyMemory(System.Buffers.ReadOnlySequence sequence, out System.ReadOnlyMemory memory) { throw null; } public static bool TryGetReadOnlySequenceSegment(System.Buffers.ReadOnlySequence sequence, out System.Buffers.ReadOnlySequenceSegment startSegment, out int startIndex, out System.Buffers.ReadOnlySequenceSegment endSegment, out int endIndex) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] [System.ObsoleteAttribute("This attribute has been deprecated. Application Domains no longer respect Activation Context boundaries in IDispatch calls.", false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SetWin32ContextInIDispatchAttribute : System.Attribute { public SetWin32ContextInIDispatchAttribute() { } } [System.ObsoleteAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct STATSTG { public System.Runtime.InteropServices.FILETIME atime; public long cbSize; public System.Guid clsid; public System.Runtime.InteropServices.FILETIME ctime; public int grfLocksSupported; public int grfMode; public int grfStateBits; public System.Runtime.InteropServices.FILETIME mtime; public string pwcsName; public int reserved; public int type; } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Struct, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class StructLayoutAttribute : System.Attribute { public System.Runtime.InteropServices.CharSet CharSet; public int Pack; public int Size; public StructLayoutAttribute(short layoutKind) { } public StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind layoutKind) { } public System.Runtime.InteropServices.LayoutKind Value { get { throw null; } } } [System.ObsoleteAttribute] [System.SerializableAttribute] public enum SYSKIND { SYS_MAC = 2, SYS_WIN16 = 0, SYS_WIN32 = 1, } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.TYPEATTR instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct TYPEATTR { public short cbAlignment; public int cbSizeInstance; public short cbSizeVft; public short cFuncs; public short cImplTypes; public short cVars; public int dwReserved; public System.Guid guid; public System.Runtime.InteropServices.IDLDESC idldescType; public int lcid; public System.IntPtr lpstrSchema; public const int MEMBER_ID_NIL = -1; public int memidConstructor; public int memidDestructor; public System.Runtime.InteropServices.TYPEDESC tdescAlias; public System.Runtime.InteropServices.TYPEKIND typekind; public short wMajorVerNum; public short wMinorVerNum; public System.Runtime.InteropServices.TYPEFLAGS wTypeFlags; } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.TYPEDESC instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct TYPEDESC { public System.IntPtr lpValue; public short vt; } [System.FlagsAttribute] [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.TYPEFLAGS instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum TYPEFLAGS : short { TYPEFLAG_FAGGREGATABLE = (short)1024, TYPEFLAG_FAPPOBJECT = (short)1, TYPEFLAG_FCANCREATE = (short)2, TYPEFLAG_FCONTROL = (short)32, TYPEFLAG_FDISPATCHABLE = (short)4096, TYPEFLAG_FDUAL = (short)64, TYPEFLAG_FHIDDEN = (short)16, TYPEFLAG_FLICENSED = (short)4, TYPEFLAG_FNONEXTENSIBLE = (short)128, TYPEFLAG_FOLEAUTOMATION = (short)256, TYPEFLAG_FPREDECLID = (short)8, TYPEFLAG_FPROXY = (short)16384, TYPEFLAG_FREPLACEABLE = (short)2048, TYPEFLAG_FRESTRICTED = (short)512, TYPEFLAG_FREVERSEBIND = (short)8192, } [System.AttributeUsageAttribute(System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct, AllowMultiple=false, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public sealed partial class TypeIdentifierAttribute : System.Attribute { public TypeIdentifierAttribute() { } public TypeIdentifierAttribute(string scope, string identifier) { } public string Identifier { get { throw null; } } public string Scope { get { throw null; } } } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.TYPEKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum TYPEKIND { TKIND_ALIAS = 6, TKIND_COCLASS = 5, TKIND_DISPATCH = 4, TKIND_ENUM = 0, TKIND_INTERFACE = 3, TKIND_MAX = 8, TKIND_MODULE = 2, TKIND_RECORD = 1, TKIND_UNION = 7, } [System.ObsoleteAttribute] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct TYPELIBATTR { public System.Guid guid; public int lcid; public System.Runtime.InteropServices.SYSKIND syskind; public System.Runtime.InteropServices.LIBFLAGS wLibFlags; public short wMajorVerNum; public short wMinorVerNum; } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.None)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("f1c3bf79-c3e4-11d3-88e7-00902754c43a")] public sealed partial class TypeLibConverter : System.Runtime.InteropServices.ITypeLibConverter { public TypeLibConverter() { } [System.MonoTODOAttribute("implement")] [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)] public object ConvertAssemblyToTypeLib(System.Reflection.Assembly assembly, string strTypeLibName, System.Runtime.InteropServices.TypeLibExporterFlags flags, System.Runtime.InteropServices.ITypeLibExporterNotifySink notifySink) { throw null; } [System.MonoTODOAttribute("implement")] public System.Reflection.Emit.AssemblyBuilder ConvertTypeLibToAssembly([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object typeLib, string asmFileName, int flags, System.Runtime.InteropServices.ITypeLibImporterNotifySink notifySink, byte[] publicKey, System.Reflection.StrongNameKeyPair keyPair, bool unsafeInterfaces) { throw null; } [System.MonoTODOAttribute("implement")] public System.Reflection.Emit.AssemblyBuilder ConvertTypeLibToAssembly([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object typeLib, string asmFileName, System.Runtime.InteropServices.TypeLibImporterFlags flags, System.Runtime.InteropServices.ITypeLibImporterNotifySink notifySink, byte[] publicKey, System.Reflection.StrongNameKeyPair keyPair, string asmNamespace, System.Version asmVersion) { throw null; } [System.MonoTODOAttribute("implement")] public bool GetPrimaryInteropAssembly(System.Guid g, int major, int minor, int lcid, out string asmName, out string asmCodeBase) { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum TypeLibExporterFlags { CallerResolvedReferences = 2, ExportAs32Bit = 16, ExportAs64Bit = 32, None = 0, OldNames = 4, OnlyReferenceRegistered = 1, } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class TypeLibFuncAttribute : System.Attribute { public TypeLibFuncAttribute(short flags) { } public TypeLibFuncAttribute(System.Runtime.InteropServices.TypeLibFuncFlags flags) { } public System.Runtime.InteropServices.TypeLibFuncFlags Value { get { throw null; } } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum TypeLibFuncFlags { FBindable = 4, FDefaultBind = 32, FDefaultCollelem = 256, FDisplayBind = 16, FHidden = 64, FImmediateBind = 4096, FNonBrowsable = 1024, FReplaceable = 2048, FRequestEdit = 8, FRestricted = 1, FSource = 2, FUiDefault = 512, FUsesGetLastError = 128, } [System.AttributeUsageAttribute(System.AttributeTargets.Interface, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class TypeLibImportClassAttribute : System.Attribute { public TypeLibImportClassAttribute(System.Type importClass) { } public string Value { get { throw null; } } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum TypeLibImporterFlags { ImportAsAgnostic = 2048, ImportAsItanium = 1024, ImportAsX64 = 512, ImportAsX86 = 256, NoDefineVersionResource = 8192, None = 0, PreventClassMembers = 16, PrimaryInteropAssembly = 1, ReflectionOnlyLoading = 4096, SafeArrayAsSystemArray = 4, SerializableValueClasses = 32, TransformDispRetVals = 8, UnsafeInterfaces = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class TypeLibTypeAttribute : System.Attribute { public TypeLibTypeAttribute(short flags) { } public TypeLibTypeAttribute(System.Runtime.InteropServices.TypeLibTypeFlags flags) { } public System.Runtime.InteropServices.TypeLibTypeFlags Value { get { throw null; } } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum TypeLibTypeFlags { FAggregatable = 1024, FAppObject = 1, FCanCreate = 2, FControl = 32, FDispatchable = 4096, FDual = 64, FHidden = 16, FLicensed = 4, FNonExtensible = 128, FOleAutomation = 256, FPreDeclId = 8, FReplaceable = 2048, FRestricted = 512, FReverseBind = 8192, } [System.AttributeUsageAttribute(System.AttributeTargets.Field, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class TypeLibVarAttribute : System.Attribute { public TypeLibVarAttribute(short flags) { } public TypeLibVarAttribute(System.Runtime.InteropServices.TypeLibVarFlags flags) { } public System.Runtime.InteropServices.TypeLibVarFlags Value { get { throw null; } } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum TypeLibVarFlags { FBindable = 4, FDefaultBind = 32, FDefaultCollelem = 256, FDisplayBind = 16, FHidden = 64, FImmediateBind = 4096, FNonBrowsable = 1024, FReadOnly = 1, FReplaceable = 2048, FRequestEdit = 8, FRestricted = 128, FSource = 2, FUiDefault = 512, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class TypeLibVersionAttribute : System.Attribute { public TypeLibVersionAttribute(int major, int minor) { } public int MajorVersion { get { throw null; } } public int MinorVersion { get { throw null; } } } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("0000000e-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIBindCtx { void EnumObjectParam(out System.Runtime.InteropServices.UCOMIEnumString ppenum); void GetBindOptions(ref System.Runtime.InteropServices.BIND_OPTS pbindopts); void GetObjectParam([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszKey, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppunk); void GetRunningObjectTable(out System.Runtime.InteropServices.UCOMIRunningObjectTable pprot); void RegisterObjectBound([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punk); void RegisterObjectParam([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszKey, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punk); void ReleaseBoundObjects(); void RevokeObjectBound([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punk); void RevokeObjectParam([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszKey); void SetBindOptions([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.BIND_OPTS pbindopts); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("b196b286-bab4-101a-b69c-00aa00341d07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIConnectionPoint { void Advise([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object pUnkSink, out int pdwCookie); void EnumConnections(out System.Runtime.InteropServices.UCOMIEnumConnections ppEnum); void GetConnectionInterface(out System.Guid pIID); void GetConnectionPointContainer(out System.Runtime.InteropServices.UCOMIConnectionPointContainer ppCPC); void Unadvise(int dwCookie); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("b196b284-bab4-101a-b69c-00aa00341d07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIConnectionPointContainer { void EnumConnectionPoints(out System.Runtime.InteropServices.UCOMIEnumConnectionPoints ppEnum); void FindConnectionPoint(ref System.Guid riid, out System.Runtime.InteropServices.UCOMIConnectionPoint ppCP); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("b196b285-bab4-101a-b69c-00aa00341d07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIEnumConnectionPoints { void Clone(out System.Runtime.InteropServices.UCOMIEnumConnectionPoints ppenum); [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.UCOMIConnectionPoint[] rgelt, out int pceltFetched); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.IEnumConnections instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.GuidAttribute("B196B287-BAB4-101A-B69C-00AA00341D07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIEnumConnections { void Clone(out System.Runtime.InteropServices.UCOMIEnumConnections ppenum); [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.CONNECTDATA[] rgelt, out int pceltFetched); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("00000102-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIEnumMoniker { void Clone(out System.Runtime.InteropServices.UCOMIEnumMoniker ppenum); [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.UCOMIMoniker[] rgelt, out int pceltFetched); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("00000101-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIEnumString { void Clone(out System.Runtime.InteropServices.UCOMIEnumString ppenum); [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)]string[] rgelt, out int pceltFetched); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("00020404-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIEnumVARIANT { void Clone(int ppenum); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Next(int celt, int rgvar, int pceltFetched); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("0000000f-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIMoniker { void BindToObject(System.Runtime.InteropServices.UCOMIBindCtx pbc, System.Runtime.InteropServices.UCOMIMoniker pmkToLeft, [System.Runtime.InteropServices.In]ref System.Guid riidResult, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppvResult); void BindToStorage(System.Runtime.InteropServices.UCOMIBindCtx pbc, System.Runtime.InteropServices.UCOMIMoniker pmkToLeft, [System.Runtime.InteropServices.In]ref System.Guid riid, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppvObj); void CommonPrefixWith(System.Runtime.InteropServices.UCOMIMoniker pmkOther, out System.Runtime.InteropServices.UCOMIMoniker ppmkPrefix); void ComposeWith(System.Runtime.InteropServices.UCOMIMoniker pmkRight, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fOnlyIfNotGeneric, out System.Runtime.InteropServices.UCOMIMoniker ppmkComposite); void Enum([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fForward, out System.Runtime.InteropServices.UCOMIEnumMoniker ppenumMoniker); void GetClassID(out System.Guid pClassID); void GetDisplayName(System.Runtime.InteropServices.UCOMIBindCtx pbc, System.Runtime.InteropServices.UCOMIMoniker pmkToLeft, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]out string ppszDisplayName); void GetSizeMax(out long pcbSize); void GetTimeOfLastChange(System.Runtime.InteropServices.UCOMIBindCtx pbc, System.Runtime.InteropServices.UCOMIMoniker pmkToLeft, out System.Runtime.InteropServices.FILETIME pFileTime); void Hash(out int pdwHash); void Inverse(out System.Runtime.InteropServices.UCOMIMoniker ppmk); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsDirty(); void IsEqual(System.Runtime.InteropServices.UCOMIMoniker pmkOtherMoniker); void IsRunning(System.Runtime.InteropServices.UCOMIBindCtx pbc, System.Runtime.InteropServices.UCOMIMoniker pmkToLeft, System.Runtime.InteropServices.UCOMIMoniker pmkNewlyRunning); void IsSystemMoniker(out int pdwMksys); void Load(System.Runtime.InteropServices.UCOMIStream pStm); void ParseDisplayName(System.Runtime.InteropServices.UCOMIBindCtx pbc, System.Runtime.InteropServices.UCOMIMoniker pmkToLeft, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszDisplayName, out int pchEaten, out System.Runtime.InteropServices.UCOMIMoniker ppmkOut); void Reduce(System.Runtime.InteropServices.UCOMIBindCtx pbc, int dwReduceHowFar, ref System.Runtime.InteropServices.UCOMIMoniker ppmkToLeft, out System.Runtime.InteropServices.UCOMIMoniker ppmkReduced); void RelativePathTo(System.Runtime.InteropServices.UCOMIMoniker pmkOther, out System.Runtime.InteropServices.UCOMIMoniker ppmkRelPath); void Save(System.Runtime.InteropServices.UCOMIStream pStm, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fClearDirty); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("0000010b-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIPersistFile { void GetClassID(out System.Guid pClassID); void GetCurFile([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]out string ppszFileName); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsDirty(); void Load([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszFileName, int dwMode); void Save([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszFileName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fRemember); void SaveCompleted([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszFileName); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("00000010-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIRunningObjectTable { void EnumRunning(out System.Runtime.InteropServices.UCOMIEnumMoniker ppenumMoniker); void GetObject(System.Runtime.InteropServices.UCOMIMoniker pmkObjectName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppunkObject); void GetTimeOfLastChange(System.Runtime.InteropServices.UCOMIMoniker pmkObjectName, out System.Runtime.InteropServices.FILETIME pfiletime); void IsRunning(System.Runtime.InteropServices.UCOMIMoniker pmkObjectName); void NoteChangeTime(int dwRegister, ref System.Runtime.InteropServices.FILETIME pfiletime); void Register(int grfFlags, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punkObject, System.Runtime.InteropServices.UCOMIMoniker pmkObjectName, out int pdwRegister); void Revoke(int dwRegister); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("0000000c-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMIStream { void Clone(out System.Runtime.InteropServices.UCOMIStream ppstm); void Commit(int grfCommitFlags); void CopyTo(System.Runtime.InteropServices.UCOMIStream pstm, long cb, System.IntPtr pcbRead, System.IntPtr pcbWritten); void LockRegion(long libOffset, long cb, int dwLockType); void Read([System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] pv, int cb, System.IntPtr pcbRead); void Revert(); void Seek(long dlibMove, int dwOrigin, System.IntPtr plibNewPosition); void SetSize(long libNewSize); void Stat(out System.Runtime.InteropServices.STATSTG pstatstg, int grfStatFlag); void UnlockRegion(long libOffset, long cb, int dwLockType); void Write([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] pv, int cb, System.IntPtr pcbWritten); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("00020403-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMITypeComp { void Bind([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szName, int lHashVal, short wFlags, out System.Runtime.InteropServices.UCOMITypeInfo ppTInfo, out System.Runtime.InteropServices.DESCKIND pDescKind, out System.Runtime.InteropServices.BINDPTR pBindPtr); void BindType([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szName, int lHashVal, out System.Runtime.InteropServices.UCOMITypeInfo ppTInfo, out System.Runtime.InteropServices.UCOMITypeComp ppTComp); } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.ITypeInfo instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.GuidAttribute("00020401-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMITypeInfo { void AddressOfMember(int memid, System.Runtime.InteropServices.INVOKEKIND invKind, out System.IntPtr ppv); void CreateInstance([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]object pUnkOuter, ref System.Guid riid, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]out object ppvObj); void GetContainingTypeLib(out System.Runtime.InteropServices.UCOMITypeLib ppTLB, out int pIndex); void GetDllEntry(int memid, System.Runtime.InteropServices.INVOKEKIND invKind, out string pBstrDllName, out string pBstrName, out short pwOrdinal); void GetDocumentation(int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile); void GetFuncDesc(int index, out System.IntPtr ppFuncDesc); void GetIDsOfNames([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]string[] rgszNames, int cNames, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] pMemId); void GetImplTypeFlags(int index, out int pImplTypeFlags); void GetMops(int memid, out string pBstrMops); void GetNames(int memid, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]string[] rgBstrNames, int cMaxNames, out int pcNames); void GetRefTypeInfo(int hRef, out System.Runtime.InteropServices.UCOMITypeInfo ppTI); void GetRefTypeOfImplType(int index, out int href); void GetTypeAttr(out System.IntPtr ppTypeAttr); void GetTypeComp(out System.Runtime.InteropServices.UCOMITypeComp ppTComp); void GetVarDesc(int index, out System.IntPtr ppVarDesc); void Invoke([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]object pvInstance, int memid, short wFlags, ref System.Runtime.InteropServices.DISPPARAMS pDispParams, out object pVarResult, out System.Runtime.InteropServices.EXCEPINFO pExcepInfo, out int puArgErr); void ReleaseFuncDesc(System.IntPtr pFuncDesc); void ReleaseTypeAttr(System.IntPtr pTypeAttr); void ReleaseVarDesc(System.IntPtr pVarDesc); } [System.ObsoleteAttribute] [System.Runtime.InteropServices.GuidAttribute("00020402-0000-0000-c000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface UCOMITypeLib { void FindName([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szNameBuf, int lHashVal, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]System.Runtime.InteropServices.UCOMITypeInfo[] ppTInfo, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] rgMemId, ref short pcFound); void GetDocumentation(int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile); void GetLibAttr(out System.IntPtr ppTLibAttr); void GetTypeComp(out System.Runtime.InteropServices.UCOMITypeComp ppTComp); void GetTypeInfo(int index, out System.Runtime.InteropServices.UCOMITypeInfo ppTI); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int GetTypeInfoCount(); void GetTypeInfoOfGuid(ref System.Guid guid, out System.Runtime.InteropServices.UCOMITypeInfo ppTInfo); void GetTypeInfoType(int index, out System.Runtime.InteropServices.TYPEKIND pTKind); [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)] bool IsName([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szNameBuf, int lHashVal); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void ReleaseTLibAttr(System.IntPtr pTLibAttr); } public sealed partial class UnknownWrapper { public UnknownWrapper(object obj) { } public object WrappedObject { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Delegate, AllowMultiple=false, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class UnmanagedFunctionPointerAttribute : System.Attribute { public bool BestFitMapping; public System.Runtime.InteropServices.CharSet CharSet; public bool SetLastError; public bool ThrowOnUnmappableChar; public UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention callingConvention) { } public System.Runtime.InteropServices.CallingConvention CallingConvention { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum UnmanagedType { AnsiBStr = 35, AsAny = 40, Bool = 2, BStr = 19, ByValArray = 30, ByValTStr = 23, Currency = 15, CustomMarshaler = 44, Error = 45, FunctionPtr = 38, [System.Runtime.InteropServices.ComVisibleAttribute(false)] HString = 47, I1 = 3, I2 = 5, I4 = 7, I8 = 9, IDispatch = 26, [System.Runtime.InteropServices.ComVisibleAttribute(false)] IInspectable = 46, Interface = 28, IUnknown = 25, LPArray = 42, LPStr = 20, LPStruct = 43, LPTStr = 22, [System.Runtime.InteropServices.ComVisibleAttribute(false)] LPUTF8Str = 48, LPWStr = 21, R4 = 11, R8 = 12, SafeArray = 29, Struct = 27, SysInt = 31, SysUInt = 32, TBStr = 36, U1 = 4, U2 = 6, U4 = 8, U8 = 10, VariantBool = 37, VBByRefStr = 34, } [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.VARDESC instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct VARDESC { public System.Runtime.InteropServices.ELEMDESC elemdescVar; public string lpstrSchema; public int memid; public System.Runtime.InteropServices.VarEnum varkind; public short wVarFlags; [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct DESCUNION { [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lpvarValue; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public int oInst; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum VarEnum { VT_ARRAY = 8192, VT_BLOB = 65, VT_BLOB_OBJECT = 70, VT_BOOL = 11, VT_BSTR = 8, VT_BYREF = 16384, VT_CARRAY = 28, VT_CF = 71, VT_CLSID = 72, VT_CY = 6, VT_DATE = 7, VT_DECIMAL = 14, VT_DISPATCH = 9, VT_EMPTY = 0, VT_ERROR = 10, VT_FILETIME = 64, VT_HRESULT = 25, VT_I1 = 16, VT_I2 = 2, VT_I4 = 3, VT_I8 = 20, VT_INT = 22, VT_LPSTR = 30, VT_LPWSTR = 31, VT_NULL = 1, VT_PTR = 26, VT_R4 = 4, VT_R8 = 5, VT_RECORD = 36, VT_SAFEARRAY = 27, VT_STORAGE = 67, VT_STORED_OBJECT = 69, VT_STREAM = 66, VT_STREAMED_OBJECT = 68, VT_UI1 = 17, VT_UI2 = 18, VT_UI4 = 19, VT_UI8 = 21, VT_UINT = 23, VT_UNKNOWN = 13, VT_USERDEFINED = 29, VT_VARIANT = 12, VT_VECTOR = 4096, VT_VOID = 24, } [System.FlagsAttribute] [System.ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.VARFLAGS instead. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.SerializableAttribute] public enum VARFLAGS : short { VARFLAG_FBINDABLE = (short)4, VARFLAG_FDEFAULTBIND = (short)32, VARFLAG_FDEFAULTCOLLELEM = (short)256, VARFLAG_FDISPLAYBIND = (short)16, VARFLAG_FHIDDEN = (short)64, VARFLAG_FIMMEDIATEBIND = (short)4096, VARFLAG_FNONBROWSABLE = (short)1024, VARFLAG_FREADONLY = (short)1, VARFLAG_FREPLACEABLE = (short)2048, VARFLAG_FREQUESTEDIT = (short)8, VARFLAG_FRESTRICTED = (short)128, VARFLAG_FSOURCE = (short)2, VARFLAG_FUIDEFAULT = (short)512, } public sealed partial class VariantWrapper { public VariantWrapper(object obj) { } public object WrappedObject { get { throw null; } } } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("03973551-57A1-3900-A2B5-9083E3FF2943")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Activator))] public partial interface _Activator { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("17156360-2F1A-384A-BC52-FDE93C215C5B")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsDual)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Assembly))] public partial interface _Assembly { string CodeBase { get; } System.Reflection.MethodInfo EntryPoint { get; } string EscapedCodeBase { get; } System.Security.Policy.Evidence Evidence { get; } string FullName { get; } bool GlobalAssemblyCache { get; } string Location { get; } event System.Reflection.ModuleResolveEventHandler ModuleResolve; object CreateInstance(string typeName); object CreateInstance(string typeName, bool ignoreCase); object CreateInstance(string typeName, bool ignoreCase, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, object[] args, System.Globalization.CultureInfo culture, object[] activationAttributes); bool Equals(object other); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); System.Type[] GetExportedTypes(); System.IO.FileStream GetFile(string name); System.IO.FileStream[] GetFiles(); System.IO.FileStream[] GetFiles(bool getResourceModules); int GetHashCode(); System.Reflection.Module[] GetLoadedModules(); System.Reflection.Module[] GetLoadedModules(bool getResourceModules); System.Reflection.ManifestResourceInfo GetManifestResourceInfo(string resourceName); string[] GetManifestResourceNames(); System.IO.Stream GetManifestResourceStream(string name); System.IO.Stream GetManifestResourceStream(System.Type type, string name); System.Reflection.Module GetModule(string name); System.Reflection.Module[] GetModules(); System.Reflection.Module[] GetModules(bool getResourceModules); System.Reflection.AssemblyName GetName(); System.Reflection.AssemblyName GetName(bool copiedName); void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context); System.Reflection.AssemblyName[] GetReferencedAssemblies(); System.Reflection.Assembly GetSatelliteAssembly(System.Globalization.CultureInfo culture); System.Reflection.Assembly GetSatelliteAssembly(System.Globalization.CultureInfo culture, System.Version version); System.Type GetType(); System.Type GetType(string name); System.Type GetType(string name, bool throwOnError); System.Type GetType(string name, bool throwOnError, bool ignoreCase); System.Type[] GetTypes(); bool IsDefined(System.Type attributeType, bool inherit); System.Reflection.Module LoadModule(string moduleName, byte[] rawModule); System.Reflection.Module LoadModule(string moduleName, byte[] rawModule, byte[] rawSymbolStore); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("BEBB2505-8B54-3443-AEAD-142A16DD9CC7")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.AssemblyBuilder))] public partial interface _AssemblyBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("B42B6AAC-317E-34D5-9FA9-093BB4160C50")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.AssemblyName))] public partial interface _AssemblyName { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("917B14D0-2D9E-38B8-92A9-381ACF52F7C0")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Attribute))] public partial interface _Attribute { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("ED3E4384-D7E2-3FA7-8FFD-8940D330519A")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.ConstructorBuilder))] public partial interface _ConstructorBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("E9A19478-9646-3679-9B10-8411AE1FD57D")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.ConstructorInfo))] public partial interface _ConstructorInfo { System.Reflection.MethodAttributes Attributes { get; } System.Reflection.CallingConventions CallingConvention { get; } System.Type DeclaringType { get; } bool IsAbstract { get; } bool IsAssembly { get; } bool IsConstructor { get; } bool IsFamily { get; } bool IsFamilyAndAssembly { get; } bool IsFamilyOrAssembly { get; } bool IsFinal { get; } bool IsHideBySig { get; } bool IsPrivate { get; } bool IsPublic { get; } bool IsSpecialName { get; } bool IsStatic { get; } bool IsVirtual { get; } System.Reflection.MemberTypes MemberType { get; } System.RuntimeMethodHandle MethodHandle { get; } string Name { get; } System.Type ReflectedType { get; } bool Equals(object other); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Reflection.MethodImplAttributes GetMethodImplementationFlags(); System.Reflection.ParameterInfo[] GetParameters(); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); object Invoke_2(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture); object Invoke_3(object obj, object[] parameters); object Invoke_4(System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture); object Invoke_5(object[] parameters); bool IsDefined(System.Type attributeType, bool inherit); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("BE9ACCE8-AAFF-3B91-81AE-8211663F5CAD")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.CustomAttributeBuilder))] public partial interface _CustomAttributeBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("C7BD73DE-9F85-3290-88EE-090B8BDFE2DF")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.EnumBuilder))] public partial interface _EnumBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("AADABA99-895D-3D65-9760-B1F12621FAE8")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.EventBuilder))] public partial interface _EventBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("9DE59C64-D889-35A1-B897-587D74469E5B")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.EventInfo))] public partial interface _EventInfo { System.Reflection.EventAttributes Attributes { get; } System.Type DeclaringType { get; } System.Type EventHandlerType { get; } bool IsMulticast { get; } bool IsSpecialName { get; } System.Reflection.MemberTypes MemberType { get; } string Name { get; } System.Type ReflectedType { get; } void AddEventHandler(object target, System.Delegate handler); bool Equals(object other); System.Reflection.MethodInfo GetAddMethod(); System.Reflection.MethodInfo GetAddMethod(bool nonPublic); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Reflection.MethodInfo GetRaiseMethod(); System.Reflection.MethodInfo GetRaiseMethod(bool nonPublic); System.Reflection.MethodInfo GetRemoveMethod(); System.Reflection.MethodInfo GetRemoveMethod(bool nonPublic); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); bool IsDefined(System.Type attributeType, bool inherit); void RemoveEventHandler(object target, System.Delegate handler); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("b36b5c63-42ef-38bc-a07e-0b34c98f164a")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsDual)] public partial interface _Exception { string HelpLink { get; set; } System.Exception InnerException { get; } string Message { get; } string Source { get; set; } string StackTrace { get; } System.Reflection.MethodBase TargetSite { get; } bool Equals(object obj); System.Exception GetBaseException(); int GetHashCode(); void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context); System.Type GetType(); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("CE1A3BF5-975E-30CC-97C9-1EF70F8F3993")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.FieldBuilder))] public partial interface _FieldBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("8A7C1442-A9FB-366B-80D8-4939FFA6DBE0")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.FieldInfo))] public partial interface _FieldInfo { System.Reflection.FieldAttributes Attributes { get; } System.Type DeclaringType { get; } System.RuntimeFieldHandle FieldHandle { get; } System.Type FieldType { get; } bool IsAssembly { get; } bool IsFamily { get; } bool IsFamilyAndAssembly { get; } bool IsFamilyOrAssembly { get; } bool IsInitOnly { get; } bool IsLiteral { get; } bool IsNotSerialized { get; } bool IsPinvokeImpl { get; } bool IsPrivate { get; } bool IsPublic { get; } bool IsSpecialName { get; } bool IsStatic { get; } System.Reflection.MemberTypes MemberType { get; } string Name { get; } System.Type ReflectedType { get; } bool Equals(object other); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); object GetValue(object obj); object GetValueDirect(System.TypedReference obj); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); bool IsDefined(System.Type attributeType, bool inherit); void SetValue(object obj, object value); void SetValue(object obj, object value, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Globalization.CultureInfo culture); void SetValueDirect(System.TypedReference obj, object value); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("A4924B27-6E3B-37F7-9B83-A4501955E6A7")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.ILGenerator))] public partial interface _ILGenerator { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("4E6350D1-A08B-3DEC-9A3E-C465F9AEEC0C")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.LocalBuilder))] public partial interface _LocalBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("f7102fa9-cabb-3a74-a6da-b4567ef1b079")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.MemberInfo))] public partial interface _MemberInfo { System.Type DeclaringType { get; } System.Reflection.MemberTypes MemberType { get; } string Name { get; } System.Type ReflectedType { get; } bool Equals(object other); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); bool IsDefined(System.Type attributeType, bool inherit); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("6240837A-707F-3181-8E98-A36AE086766B")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.MethodBase))] public partial interface _MethodBase { System.Reflection.MethodAttributes Attributes { get; } System.Reflection.CallingConventions CallingConvention { get; } System.Type DeclaringType { get; } bool IsAbstract { get; } bool IsAssembly { get; } bool IsConstructor { get; } bool IsFamily { get; } bool IsFamilyAndAssembly { get; } bool IsFamilyOrAssembly { get; } bool IsFinal { get; } bool IsHideBySig { get; } bool IsPrivate { get; } bool IsPublic { get; } bool IsSpecialName { get; } bool IsStatic { get; } bool IsVirtual { get; } System.Reflection.MemberTypes MemberType { get; } System.RuntimeMethodHandle MethodHandle { get; } string Name { get; } System.Type ReflectedType { get; } bool Equals(object other); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Reflection.MethodImplAttributes GetMethodImplementationFlags(); System.Reflection.ParameterInfo[] GetParameters(); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); object Invoke(object obj, object[] parameters); object Invoke(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); bool IsDefined(System.Type attributeType, bool inherit); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("007D8A14-FDF3-363E-9A0B-FEC0618260A2")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.MethodBuilder))] public partial interface _MethodBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("FFCC1B5D-ECB8-38DD-9B01-3DC8ABC2AA5F")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.MethodInfo))] public partial interface _MethodInfo { System.Reflection.MethodAttributes Attributes { get; } System.Reflection.CallingConventions CallingConvention { get; } System.Type DeclaringType { get; } bool IsAbstract { get; } bool IsAssembly { get; } bool IsConstructor { get; } bool IsFamily { get; } bool IsFamilyAndAssembly { get; } bool IsFamilyOrAssembly { get; } bool IsFinal { get; } bool IsHideBySig { get; } bool IsPrivate { get; } bool IsPublic { get; } bool IsSpecialName { get; } bool IsStatic { get; } bool IsVirtual { get; } System.Reflection.MemberTypes MemberType { get; } System.RuntimeMethodHandle MethodHandle { get; } string Name { get; } System.Type ReflectedType { get; } System.Type ReturnType { get; } System.Reflection.ICustomAttributeProvider ReturnTypeCustomAttributes { get; } bool Equals(object other); System.Reflection.MethodInfo GetBaseDefinition(); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Reflection.MethodImplAttributes GetMethodImplementationFlags(); System.Reflection.ParameterInfo[] GetParameters(); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); object Invoke(object obj, object[] parameters); object Invoke(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] parameters, System.Globalization.CultureInfo culture); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); bool IsDefined(System.Type attributeType, bool inherit); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("C2323C25-F57F-3880-8A4D-12EBEA7A5852")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.MethodRental))] public partial interface _MethodRental { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("D002E9BA-D9E3-3749-B1D3-D565A08B13E7")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Module))] public partial interface _Module { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("D05FFA9A-04AF-3519-8EE1-8D93AD73430B")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.ModuleBuilder))] public partial interface _ModuleBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("36329EBA-F97A-3565-BC07-0ED5C6EF19FC")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.ParameterBuilder))] public partial interface _ParameterBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("993634C4-E47A-32CC-BE08-85F567DC27D6")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.ParameterInfo))] public partial interface _ParameterInfo { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("15F9A479-9397-3A63-ACBD-F51977FB0F02")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.PropertyBuilder))] public partial interface _PropertyBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("F59ED4E4-E68F-3218-BD77-061AA82824BF")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.PropertyInfo))] public partial interface _PropertyInfo { System.Reflection.PropertyAttributes Attributes { get; } bool CanRead { get; } bool CanWrite { get; } System.Type DeclaringType { get; } bool IsSpecialName { get; } System.Reflection.MemberTypes MemberType { get; } string Name { get; } System.Type PropertyType { get; } System.Type ReflectedType { get; } bool Equals(object other); System.Reflection.MethodInfo[] GetAccessors(); System.Reflection.MethodInfo[] GetAccessors(bool nonPublic); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); System.Reflection.MethodInfo GetGetMethod(); System.Reflection.MethodInfo GetGetMethod(bool nonPublic); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Reflection.ParameterInfo[] GetIndexParameters(); System.Reflection.MethodInfo GetSetMethod(); System.Reflection.MethodInfo GetSetMethod(bool nonPublic); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); object GetValue(object obj, object[] index); object GetValue(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); bool IsDefined(System.Type attributeType, bool inherit); void SetValue(object obj, object value, object[] index); void SetValue(object obj, object value, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("7D13DD37-5A04-393C-BBCA-A5FEA802893D")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.SignatureHelper))] public partial interface _SignatureHelper { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("C281C7F1-4AA9-3517-961A-463CFED57E75")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Threading.Thread))] public partial interface _Thread { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("BCA8B44D-AAD6-3A86-8AB7-03349F4F2DA2")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Type))] public partial interface _Type { System.Reflection.Assembly Assembly { get; } string AssemblyQualifiedName { get; } System.Reflection.TypeAttributes Attributes { get; } System.Type BaseType { get; } System.Type DeclaringType { get; } string FullName { get; } System.Guid GUID { get; } bool HasElementType { get; } bool IsAbstract { get; } bool IsAnsiClass { get; } bool IsArray { get; } bool IsAutoClass { get; } bool IsAutoLayout { get; } bool IsByRef { get; } bool IsClass { get; } bool IsCOMObject { get; } bool IsContextful { get; } bool IsEnum { get; } bool IsExplicitLayout { get; } bool IsImport { get; } bool IsInterface { get; } bool IsLayoutSequential { get; } bool IsMarshalByRef { get; } bool IsNestedAssembly { get; } bool IsNestedFamANDAssem { get; } bool IsNestedFamily { get; } bool IsNestedFamORAssem { get; } bool IsNestedPrivate { get; } bool IsNestedPublic { get; } bool IsNotPublic { get; } bool IsPointer { get; } bool IsPrimitive { get; } bool IsPublic { get; } bool IsSealed { get; } bool IsSerializable { get; } bool IsSpecialName { get; } bool IsUnicodeClass { get; } bool IsValueType { get; } System.Reflection.MemberTypes MemberType { get; } System.Reflection.Module Module { get; } string Name { get; } string Namespace { get; } System.Type ReflectedType { get; } System.RuntimeTypeHandle TypeHandle { get; } System.Reflection.ConstructorInfo TypeInitializer { get; } System.Type UnderlyingSystemType { get; } bool Equals(object other); bool Equals(System.Type o); System.Type[] FindInterfaces(System.Reflection.TypeFilter filter, object filterCriteria); System.Reflection.MemberInfo[] FindMembers(System.Reflection.MemberTypes memberType, System.Reflection.BindingFlags bindingAttr, System.Reflection.MemberFilter filter, object filterCriteria); int GetArrayRank(); System.Reflection.ConstructorInfo GetConstructor(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.ConstructorInfo GetConstructor(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.ConstructorInfo GetConstructor(System.Type[] types); System.Reflection.ConstructorInfo[] GetConstructors(); System.Reflection.ConstructorInfo[] GetConstructors(System.Reflection.BindingFlags bindingAttr); object[] GetCustomAttributes(bool inherit); object[] GetCustomAttributes(System.Type attributeType, bool inherit); System.Reflection.MemberInfo[] GetDefaultMembers(); System.Type GetElementType(); System.Reflection.EventInfo GetEvent(string name); System.Reflection.EventInfo GetEvent(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.EventInfo[] GetEvents(); System.Reflection.EventInfo[] GetEvents(System.Reflection.BindingFlags bindingAttr); System.Reflection.FieldInfo GetField(string name); System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.FieldInfo[] GetFields(); System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr); int GetHashCode(); void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); System.Type GetInterface(string name); System.Type GetInterface(string name, bool ignoreCase); System.Reflection.InterfaceMapping GetInterfaceMap(System.Type interfaceType); System.Type[] GetInterfaces(); System.Reflection.MemberInfo[] GetMember(string name); System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.MemberTypes type, System.Reflection.BindingFlags bindingAttr); System.Reflection.MemberInfo[] GetMembers(); System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr); System.Reflection.MethodInfo GetMethod(string name); System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.MethodInfo GetMethod(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.MethodInfo GetMethod(string name, System.Type[] types); System.Reflection.MethodInfo GetMethod(string name, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.MethodInfo[] GetMethods(); System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr); System.Type GetNestedType(string name); System.Type GetNestedType(string name, System.Reflection.BindingFlags bindingAttr); System.Type[] GetNestedTypes(); System.Type[] GetNestedTypes(System.Reflection.BindingFlags bindingAttr); System.Reflection.PropertyInfo[] GetProperties(); System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr); System.Reflection.PropertyInfo GetProperty(string name); System.Reflection.PropertyInfo GetProperty(string name, System.Reflection.BindingFlags bindingAttr); System.Reflection.PropertyInfo GetProperty(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.PropertyInfo GetProperty(string name, System.Type returnType); System.Reflection.PropertyInfo GetProperty(string name, System.Type returnType, System.Type[] types); System.Reflection.PropertyInfo GetProperty(string name, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers); System.Reflection.PropertyInfo GetProperty(string name, System.Type[] types); System.Type GetType(); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args); object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Globalization.CultureInfo culture); object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters); bool IsAssignableFrom(System.Type c); bool IsDefined(System.Type attributeType, bool inherit); bool IsInstanceOfType(object o); bool IsSubclassOf(System.Type c); string ToString(); } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("7E5678EE-48B3-3F83-B076-C58543498A58")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] [System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Reflection.Emit.TypeBuilder))] public partial interface _TypeBuilder { void GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId); void GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo); void GetTypeInfoCount(out uint pcTInfo); void Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr); } } namespace System.Runtime.InteropServices.ComTypes { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct BINDPTR { [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lpfuncdesc; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lptcomp; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lpvardesc; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct BIND_OPTS { public int cbStruct; public int dwTickCountDeadline; public int grfFlags; public int grfMode; } [System.SerializableAttribute] public enum CALLCONV { CC_CDECL = 1, CC_MACPASCAL = 3, CC_MAX = 9, CC_MPWCDECL = 7, CC_MPWPASCAL = 8, CC_MSCPASCAL = 2, CC_PASCAL = 2, CC_RESERVED = 5, CC_STDCALL = 4, CC_SYSCALL = 6, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct CONNECTDATA { public int dwCookie; [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)] public object pUnk; } [System.SerializableAttribute] public enum DESCKIND { DESCKIND_FUNCDESC = 1, DESCKIND_IMPLICITAPPOBJ = 4, DESCKIND_MAX = 5, DESCKIND_NONE = 0, DESCKIND_TYPECOMP = 3, DESCKIND_VARDESC = 2, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct DISPPARAMS { public int cArgs; public int cNamedArgs; public System.IntPtr rgdispidNamedArgs; public System.IntPtr rgvarg; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct ELEMDESC { public System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION desc; public System.Runtime.InteropServices.ComTypes.TYPEDESC tdesc; [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct DESCUNION { [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.Runtime.InteropServices.ComTypes.IDLDESC idldesc; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.Runtime.InteropServices.ComTypes.PARAMDESC paramdesc; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct EXCEPINFO { [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)] public string bstrDescription; [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)] public string bstrHelpFile; [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)] public string bstrSource; public int dwHelpContext; public System.IntPtr pfnDeferredFillIn; public System.IntPtr pvReserved; public int scode; public short wCode; public short wReserved; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct FILETIME { public int dwHighDateTime; public int dwLowDateTime; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct FUNCDESC { public System.Runtime.InteropServices.ComTypes.CALLCONV callconv; public short cParams; public short cParamsOpt; public short cScodes; public System.Runtime.InteropServices.ComTypes.ELEMDESC elemdescFunc; public System.Runtime.InteropServices.ComTypes.FUNCKIND funckind; public System.Runtime.InteropServices.ComTypes.INVOKEKIND invkind; public System.IntPtr lprgelemdescParam; public System.IntPtr lprgscode; public int memid; public short oVft; public short wFuncFlags; } [System.FlagsAttribute] [System.SerializableAttribute] public enum FUNCFLAGS : short { FUNCFLAG_FBINDABLE = (short)4, FUNCFLAG_FDEFAULTBIND = (short)32, FUNCFLAG_FDEFAULTCOLLELEM = (short)256, FUNCFLAG_FDISPLAYBIND = (short)16, FUNCFLAG_FHIDDEN = (short)64, FUNCFLAG_FIMMEDIATEBIND = (short)4096, FUNCFLAG_FNONBROWSABLE = (short)1024, FUNCFLAG_FREPLACEABLE = (short)2048, FUNCFLAG_FREQUESTEDIT = (short)8, FUNCFLAG_FRESTRICTED = (short)1, FUNCFLAG_FSOURCE = (short)2, FUNCFLAG_FUIDEFAULT = (short)512, FUNCFLAG_FUSESGETLASTERROR = (short)128, } [System.SerializableAttribute] public enum FUNCKIND { FUNC_DISPATCH = 4, FUNC_NONVIRTUAL = 2, FUNC_PUREVIRTUAL = 1, FUNC_STATIC = 3, FUNC_VIRTUAL = 0, } [System.Runtime.InteropServices.GuidAttribute("0000000e-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IBindCtx { void EnumObjectParam(out System.Runtime.InteropServices.ComTypes.IEnumString ppenum); void GetBindOptions(ref System.Runtime.InteropServices.ComTypes.BIND_OPTS pbindopts); void GetObjectParam([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszKey, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppunk); void GetRunningObjectTable(out System.Runtime.InteropServices.ComTypes.IRunningObjectTable pprot); void RegisterObjectBound([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punk); void RegisterObjectParam([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszKey, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punk); void ReleaseBoundObjects(); void RevokeObjectBound([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punk); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int RevokeObjectParam([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszKey); void SetBindOptions([System.Runtime.InteropServices.In]ref System.Runtime.InteropServices.ComTypes.BIND_OPTS pbindopts); } [System.Runtime.InteropServices.GuidAttribute("B196B286-BAB4-101A-B69C-00AA00341D07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IConnectionPoint { void Advise([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object pUnkSink, out int pdwCookie); void EnumConnections(out System.Runtime.InteropServices.ComTypes.IEnumConnections ppEnum); void GetConnectionInterface(out System.Guid pIID); void GetConnectionPointContainer(out System.Runtime.InteropServices.ComTypes.IConnectionPointContainer ppCPC); void Unadvise(int dwCookie); } [System.Runtime.InteropServices.GuidAttribute("B196B284-BAB4-101A-B69C-00AA00341D07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IConnectionPointContainer { void EnumConnectionPoints(out System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints ppEnum); void FindConnectionPoint([System.Runtime.InteropServices.In]ref System.Guid riid, out System.Runtime.InteropServices.ComTypes.IConnectionPoint ppCP); } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct IDLDESC { public System.IntPtr dwReserved; public System.Runtime.InteropServices.ComTypes.IDLFLAG wIDLFlags; } [System.FlagsAttribute] [System.SerializableAttribute] public enum IDLFLAG : short { IDLFLAG_FIN = (short)1, IDLFLAG_FLCID = (short)4, IDLFLAG_FOUT = (short)2, IDLFLAG_FRETVAL = (short)8, IDLFLAG_NONE = (short)0, } [System.Runtime.InteropServices.GuidAttribute("B196B285-BAB4-101A-B69C-00AA00341D07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IEnumConnectionPoints { void Clone(out System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints ppenum); [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.IConnectionPoint[] rgelt, System.IntPtr pceltFetched); void Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.Runtime.InteropServices.GuidAttribute("B196B287-BAB4-101A-B69C-00AA00341D07")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IEnumConnections { void Clone(out System.Runtime.InteropServices.ComTypes.IEnumConnections ppenum); [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.CONNECTDATA[] rgelt, System.IntPtr pceltFetched); void Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.Runtime.InteropServices.GuidAttribute("00000102-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IEnumMoniker { void Clone(out System.Runtime.InteropServices.ComTypes.IEnumMoniker ppenum); [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.IMoniker[] rgelt, System.IntPtr pceltFetched); void Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.Runtime.InteropServices.GuidAttribute("00000101-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IEnumString { void Clone(out System.Runtime.InteropServices.ComTypes.IEnumString ppenum); [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)]string[] rgelt, System.IntPtr pceltFetched); void Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.Runtime.InteropServices.GuidAttribute("00020404-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IEnumVARIANT { System.Runtime.InteropServices.ComTypes.IEnumVARIANT Clone(); [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)]object[] rgVar, System.IntPtr pceltFetched); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Reset(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int Skip(int celt); } [System.Runtime.InteropServices.GuidAttribute("0000000f-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IMoniker { void BindToObject(System.Runtime.InteropServices.ComTypes.IBindCtx pbc, System.Runtime.InteropServices.ComTypes.IMoniker pmkToLeft, [System.Runtime.InteropServices.In]ref System.Guid riidResult, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppvResult); void BindToStorage(System.Runtime.InteropServices.ComTypes.IBindCtx pbc, System.Runtime.InteropServices.ComTypes.IMoniker pmkToLeft, [System.Runtime.InteropServices.In]ref System.Guid riid, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppvObj); void CommonPrefixWith(System.Runtime.InteropServices.ComTypes.IMoniker pmkOther, out System.Runtime.InteropServices.ComTypes.IMoniker ppmkPrefix); void ComposeWith(System.Runtime.InteropServices.ComTypes.IMoniker pmkRight, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fOnlyIfNotGeneric, out System.Runtime.InteropServices.ComTypes.IMoniker ppmkComposite); void Enum([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fForward, out System.Runtime.InteropServices.ComTypes.IEnumMoniker ppenumMoniker); void GetClassID(out System.Guid pClassID); void GetDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx pbc, System.Runtime.InteropServices.ComTypes.IMoniker pmkToLeft, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]out string ppszDisplayName); void GetSizeMax(out long pcbSize); void GetTimeOfLastChange(System.Runtime.InteropServices.ComTypes.IBindCtx pbc, System.Runtime.InteropServices.ComTypes.IMoniker pmkToLeft, out System.Runtime.InteropServices.ComTypes.FILETIME pFileTime); void Hash(out int pdwHash); void Inverse(out System.Runtime.InteropServices.ComTypes.IMoniker ppmk); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsDirty(); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsEqual(System.Runtime.InteropServices.ComTypes.IMoniker pmkOtherMoniker); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsRunning(System.Runtime.InteropServices.ComTypes.IBindCtx pbc, System.Runtime.InteropServices.ComTypes.IMoniker pmkToLeft, System.Runtime.InteropServices.ComTypes.IMoniker pmkNewlyRunning); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsSystemMoniker(out int pdwMksys); void Load(System.Runtime.InteropServices.ComTypes.IStream pStm); void ParseDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx pbc, System.Runtime.InteropServices.ComTypes.IMoniker pmkToLeft, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszDisplayName, out int pchEaten, out System.Runtime.InteropServices.ComTypes.IMoniker ppmkOut); void Reduce(System.Runtime.InteropServices.ComTypes.IBindCtx pbc, int dwReduceHowFar, ref System.Runtime.InteropServices.ComTypes.IMoniker ppmkToLeft, out System.Runtime.InteropServices.ComTypes.IMoniker ppmkReduced); void RelativePathTo(System.Runtime.InteropServices.ComTypes.IMoniker pmkOther, out System.Runtime.InteropServices.ComTypes.IMoniker ppmkRelPath); void Save(System.Runtime.InteropServices.ComTypes.IStream pStm, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fClearDirty); } [System.FlagsAttribute] [System.SerializableAttribute] public enum IMPLTYPEFLAGS { IMPLTYPEFLAG_FDEFAULT = 1, IMPLTYPEFLAG_FDEFAULTVTABLE = 8, IMPLTYPEFLAG_FRESTRICTED = 4, IMPLTYPEFLAG_FSOURCE = 2, } [System.FlagsAttribute] [System.SerializableAttribute] public enum INVOKEKIND { INVOKE_FUNC = 1, INVOKE_PROPERTYGET = 2, INVOKE_PROPERTYPUT = 4, INVOKE_PROPERTYPUTREF = 8, } [System.Runtime.InteropServices.GuidAttribute("0000010b-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IPersistFile { void GetClassID(out System.Guid pClassID); void GetCurFile([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]out string ppszFileName); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsDirty(); void Load([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszFileName, int dwMode); void Save([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszFileName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool fRemember); void SaveCompleted([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string pszFileName); } [System.Runtime.InteropServices.GuidAttribute("00000010-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IRunningObjectTable { void EnumRunning(out System.Runtime.InteropServices.ComTypes.IEnumMoniker ppenumMoniker); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int GetObject(System.Runtime.InteropServices.ComTypes.IMoniker pmkObjectName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]out object ppunkObject); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int GetTimeOfLastChange(System.Runtime.InteropServices.ComTypes.IMoniker pmkObjectName, out System.Runtime.InteropServices.ComTypes.FILETIME pfiletime); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int IsRunning(System.Runtime.InteropServices.ComTypes.IMoniker pmkObjectName); void NoteChangeTime(int dwRegister, ref System.Runtime.InteropServices.ComTypes.FILETIME pfiletime); int Register(int grfFlags, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Interface)]object punkObject, System.Runtime.InteropServices.ComTypes.IMoniker pmkObjectName); void Revoke(int dwRegister); } [System.Runtime.InteropServices.GuidAttribute("0000000c-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IStream { void Clone(out System.Runtime.InteropServices.ComTypes.IStream ppstm); void Commit(int grfCommitFlags); void CopyTo(System.Runtime.InteropServices.ComTypes.IStream pstm, long cb, System.IntPtr pcbRead, System.IntPtr pcbWritten); void LockRegion(long libOffset, long cb, int dwLockType); void Read([System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] pv, int cb, System.IntPtr pcbRead); void Revert(); void Seek(long dlibMove, int dwOrigin, System.IntPtr plibNewPosition); void SetSize(long libNewSize); void Stat(out System.Runtime.InteropServices.ComTypes.STATSTG pstatstg, int grfStatFlag); void UnlockRegion(long libOffset, long cb, int dwLockType); void Write([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] pv, int cb, System.IntPtr pcbWritten); } [System.Runtime.InteropServices.GuidAttribute("00020403-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeComp { void Bind([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szName, int lHashVal, short wFlags, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTInfo, out System.Runtime.InteropServices.ComTypes.DESCKIND pDescKind, out System.Runtime.InteropServices.ComTypes.BINDPTR pBindPtr); void BindType([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szName, int lHashVal, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTInfo, out System.Runtime.InteropServices.ComTypes.ITypeComp ppTComp); } [System.Runtime.InteropServices.GuidAttribute("00020401-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeInfo { void AddressOfMember(int memid, System.Runtime.InteropServices.ComTypes.INVOKEKIND invKind, out System.IntPtr ppv); void CreateInstance([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]object pUnkOuter, [System.Runtime.InteropServices.In]ref System.Guid riid, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]out object ppvObj); void GetContainingTypeLib(out System.Runtime.InteropServices.ComTypes.ITypeLib ppTLB, out int pIndex); void GetDllEntry(int memid, System.Runtime.InteropServices.ComTypes.INVOKEKIND invKind, System.IntPtr pBstrDllName, System.IntPtr pBstrName, System.IntPtr pwOrdinal); void GetDocumentation(int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile); void GetFuncDesc(int index, out System.IntPtr ppFuncDesc); void GetIDsOfNames([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]string[] rgszNames, int cNames, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] pMemId); void GetImplTypeFlags(int index, out System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS pImplTypeFlags); void GetMops(int memid, out string pBstrMops); void GetNames(int memid, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]string[] rgBstrNames, int cMaxNames, out int pcNames); void GetRefTypeInfo(int hRef, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTI); void GetRefTypeOfImplType(int index, out int href); void GetTypeAttr(out System.IntPtr ppTypeAttr); void GetTypeComp(out System.Runtime.InteropServices.ComTypes.ITypeComp ppTComp); void GetVarDesc(int index, out System.IntPtr ppVarDesc); void Invoke([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]object pvInstance, int memid, short wFlags, ref System.Runtime.InteropServices.ComTypes.DISPPARAMS pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, out int puArgErr); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void ReleaseFuncDesc(System.IntPtr pFuncDesc); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void ReleaseTypeAttr(System.IntPtr pTypeAttr); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void ReleaseVarDesc(System.IntPtr pVarDesc); } [System.Runtime.InteropServices.GuidAttribute("00020412-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeInfo2 : System.Runtime.InteropServices.ComTypes.ITypeInfo { new void AddressOfMember(int memid, System.Runtime.InteropServices.ComTypes.INVOKEKIND invKind, out System.IntPtr ppv); new void CreateInstance([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]object pUnkOuter, [System.Runtime.InteropServices.In]ref System.Guid riid, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]out object ppvObj); void GetAllCustData(System.IntPtr pCustData); void GetAllFuncCustData(int index, System.IntPtr pCustData); void GetAllImplTypeCustData(int index, System.IntPtr pCustData); void GetAllParamCustData(int indexFunc, int indexParam, System.IntPtr pCustData); void GetAllVarCustData(int index, System.IntPtr pCustData); new void GetContainingTypeLib(out System.Runtime.InteropServices.ComTypes.ITypeLib ppTLB, out int pIndex); void GetCustData(ref System.Guid guid, out object pVarVal); new void GetDllEntry(int memid, System.Runtime.InteropServices.ComTypes.INVOKEKIND invKind, System.IntPtr pBstrDllName, System.IntPtr pBstrName, System.IntPtr pwOrdinal); new void GetDocumentation(int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile); [System.Runtime.InteropServices.LCIDConversionAttribute(1)] void GetDocumentation2(int memid, out string pbstrHelpString, out int pdwHelpStringContext, out string pbstrHelpStringDll); void GetFuncCustData(int index, ref System.Guid guid, out object pVarVal); new void GetFuncDesc(int index, out System.IntPtr ppFuncDesc); void GetFuncIndexOfMemId(int memid, System.Runtime.InteropServices.ComTypes.INVOKEKIND invKind, out int pFuncIndex); new void GetIDsOfNames([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]string[] rgszNames, int cNames, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] pMemId); void GetImplTypeCustData(int index, ref System.Guid guid, out object pVarVal); new void GetImplTypeFlags(int index, out System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS pImplTypeFlags); new void GetMops(int memid, out string pBstrMops); new void GetNames(int memid, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]string[] rgBstrNames, int cMaxNames, out int pcNames); void GetParamCustData(int indexFunc, int indexParam, ref System.Guid guid, out object pVarVal); new void GetRefTypeInfo(int hRef, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTI); new void GetRefTypeOfImplType(int index, out int href); new void GetTypeAttr(out System.IntPtr ppTypeAttr); new void GetTypeComp(out System.Runtime.InteropServices.ComTypes.ITypeComp ppTComp); void GetTypeFlags(out int pTypeFlags); void GetTypeKind(out System.Runtime.InteropServices.ComTypes.TYPEKIND pTypeKind); void GetVarCustData(int index, ref System.Guid guid, out object pVarVal); new void GetVarDesc(int index, out System.IntPtr ppVarDesc); void GetVarIndexOfMemId(int memid, out int pVarIndex); new void Invoke([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]object pvInstance, int memid, short wFlags, ref System.Runtime.InteropServices.ComTypes.DISPPARAMS pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, out int puArgErr); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]new void ReleaseFuncDesc(System.IntPtr pFuncDesc); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]new void ReleaseTypeAttr(System.IntPtr pTypeAttr); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]new void ReleaseVarDesc(System.IntPtr pVarDesc); } [System.Runtime.InteropServices.GuidAttribute("00020402-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeLib { void FindName([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szNameBuf, int lHashVal, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]System.Runtime.InteropServices.ComTypes.ITypeInfo[] ppTInfo, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] rgMemId, ref short pcFound); void GetDocumentation(int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile); void GetLibAttr(out System.IntPtr ppTLibAttr); void GetTypeComp(out System.Runtime.InteropServices.ComTypes.ITypeComp ppTComp); void GetTypeInfo(int index, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTI); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]int GetTypeInfoCount(); void GetTypeInfoOfGuid(ref System.Guid guid, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTInfo); void GetTypeInfoType(int index, out System.Runtime.InteropServices.ComTypes.TYPEKIND pTKind); [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)] bool IsName([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szNameBuf, int lHashVal); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]void ReleaseTLibAttr(System.IntPtr pTLibAttr); } [System.Runtime.InteropServices.GuidAttribute("00020411-0000-0000-C000-000000000046")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface ITypeLib2 : System.Runtime.InteropServices.ComTypes.ITypeLib { new void FindName([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szNameBuf, int lHashVal, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]System.Runtime.InteropServices.ComTypes.ITypeInfo[] ppTInfo, [System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPArray)]int[] rgMemId, ref short pcFound); void GetAllCustData(System.IntPtr pCustData); void GetCustData(ref System.Guid guid, out object pVarVal); new void GetDocumentation(int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile); [System.Runtime.InteropServices.LCIDConversionAttribute(1)] void GetDocumentation2(int index, out string pbstrHelpString, out int pdwHelpStringContext, out string pbstrHelpStringDll); new void GetLibAttr(out System.IntPtr ppTLibAttr); void GetLibStatistics(System.IntPtr pcUniqueNames, out int pcchUniqueNames); new void GetTypeComp(out System.Runtime.InteropServices.ComTypes.ITypeComp ppTComp); new void GetTypeInfo(int index, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTI); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]new int GetTypeInfoCount(); new void GetTypeInfoOfGuid(ref System.Guid guid, out System.Runtime.InteropServices.ComTypes.ITypeInfo ppTInfo); new void GetTypeInfoType(int index, out System.Runtime.InteropServices.ComTypes.TYPEKIND pTKind); [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)] new bool IsName([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]string szNameBuf, int lHashVal); [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]new void ReleaseTLibAttr(System.IntPtr pTLibAttr); } [System.FlagsAttribute] [System.SerializableAttribute] public enum LIBFLAGS : short { LIBFLAG_FCONTROL = (short)2, LIBFLAG_FHASDISKIMAGE = (short)8, LIBFLAG_FHIDDEN = (short)4, LIBFLAG_FRESTRICTED = (short)1, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct PARAMDESC { public System.IntPtr lpVarValue; public System.Runtime.InteropServices.ComTypes.PARAMFLAG wParamFlags; } [System.FlagsAttribute] [System.SerializableAttribute] public enum PARAMFLAG : short { PARAMFLAG_FHASCUSTDATA = (short)64, PARAMFLAG_FHASDEFAULT = (short)32, PARAMFLAG_FIN = (short)1, PARAMFLAG_FLCID = (short)4, PARAMFLAG_FOPT = (short)16, PARAMFLAG_FOUT = (short)2, PARAMFLAG_FRETVAL = (short)8, PARAMFLAG_NONE = (short)0, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct STATSTG { public System.Runtime.InteropServices.ComTypes.FILETIME atime; public long cbSize; public System.Guid clsid; public System.Runtime.InteropServices.ComTypes.FILETIME ctime; public int grfLocksSupported; public int grfMode; public int grfStateBits; public System.Runtime.InteropServices.ComTypes.FILETIME mtime; public string pwcsName; public int reserved; public int type; } [System.SerializableAttribute] public enum SYSKIND { SYS_MAC = 2, SYS_WIN16 = 0, SYS_WIN32 = 1, SYS_WIN64 = 3, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct TYPEATTR { public short cbAlignment; public int cbSizeInstance; public short cbSizeVft; public short cFuncs; public short cImplTypes; public short cVars; public int dwReserved; public System.Guid guid; public System.Runtime.InteropServices.ComTypes.IDLDESC idldescType; public int lcid; public System.IntPtr lpstrSchema; public const int MEMBER_ID_NIL = -1; public int memidConstructor; public int memidDestructor; public System.Runtime.InteropServices.ComTypes.TYPEDESC tdescAlias; public System.Runtime.InteropServices.ComTypes.TYPEKIND typekind; public short wMajorVerNum; public short wMinorVerNum; public System.Runtime.InteropServices.ComTypes.TYPEFLAGS wTypeFlags; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct TYPEDESC { public System.IntPtr lpValue; public short vt; } [System.FlagsAttribute] [System.SerializableAttribute] public enum TYPEFLAGS : short { TYPEFLAG_FAGGREGATABLE = (short)1024, TYPEFLAG_FAPPOBJECT = (short)1, TYPEFLAG_FCANCREATE = (short)2, TYPEFLAG_FCONTROL = (short)32, TYPEFLAG_FDISPATCHABLE = (short)4096, TYPEFLAG_FDUAL = (short)64, TYPEFLAG_FHIDDEN = (short)16, TYPEFLAG_FLICENSED = (short)4, TYPEFLAG_FNONEXTENSIBLE = (short)128, TYPEFLAG_FOLEAUTOMATION = (short)256, TYPEFLAG_FPREDECLID = (short)8, TYPEFLAG_FPROXY = (short)16384, TYPEFLAG_FREPLACEABLE = (short)2048, TYPEFLAG_FRESTRICTED = (short)512, TYPEFLAG_FREVERSEBIND = (short)8192, } [System.SerializableAttribute] public enum TYPEKIND { TKIND_ALIAS = 6, TKIND_COCLASS = 5, TKIND_DISPATCH = 4, TKIND_ENUM = 0, TKIND_INTERFACE = 3, TKIND_MAX = 8, TKIND_MODULE = 2, TKIND_RECORD = 1, TKIND_UNION = 7, } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct TYPELIBATTR { public System.Guid guid; public int lcid; public System.Runtime.InteropServices.ComTypes.SYSKIND syskind; public System.Runtime.InteropServices.ComTypes.LIBFLAGS wLibFlags; public short wMajorVerNum; public short wMinorVerNum; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct VARDESC { public System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION desc; public System.Runtime.InteropServices.ComTypes.ELEMDESC elemdescVar; public string lpstrSchema; public int memid; public System.Runtime.InteropServices.ComTypes.VARKIND varkind; public short wVarFlags; [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit, CharSet=System.Runtime.InteropServices.CharSet.Unicode)] public partial struct DESCUNION { [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public System.IntPtr lpvarValue; [System.Runtime.InteropServices.FieldOffsetAttribute(0)] public int oInst; } } [System.FlagsAttribute] [System.SerializableAttribute] public enum VARFLAGS : short { VARFLAG_FBINDABLE = (short)4, VARFLAG_FDEFAULTBIND = (short)32, VARFLAG_FDEFAULTCOLLELEM = (short)256, VARFLAG_FDISPLAYBIND = (short)16, VARFLAG_FHIDDEN = (short)64, VARFLAG_FIMMEDIATEBIND = (short)4096, VARFLAG_FNONBROWSABLE = (short)1024, VARFLAG_FREADONLY = (short)1, VARFLAG_FREPLACEABLE = (short)2048, VARFLAG_FREQUESTEDIT = (short)8, VARFLAG_FRESTRICTED = (short)128, VARFLAG_FSOURCE = (short)2, VARFLAG_FUIDEFAULT = (short)512, } [System.SerializableAttribute] public enum VARKIND { VAR_CONST = 2, VAR_DISPATCH = 3, VAR_PERINSTANCE = 0, VAR_STATIC = 1, } } namespace System.Runtime.InteropServices.Expando { [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("AFBF15E6-C37C-11d2-B88E-00A0C9B471B8")] public partial interface IExpando : System.Reflection.IReflect { System.Reflection.FieldInfo AddField(string name); System.Reflection.MethodInfo AddMethod(string name, System.Delegate method); System.Reflection.PropertyInfo AddProperty(string name); void RemoveMember(System.Reflection.MemberInfo m); } } namespace System.Runtime.InteropServices.WindowsRuntime { [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Interface, AllowMultiple=false, Inherited=false)] public sealed partial class DefaultInterfaceAttribute : System.Attribute { public DefaultInterfaceAttribute(System.Type defaultInterface) { } public System.Type DefaultInterface { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public partial class DesignerNamespaceResolveEventArgs : System.EventArgs { public DesignerNamespaceResolveEventArgs(string namespaceName) { } public string NamespaceName { get { throw null; } } public System.Collections.ObjectModel.Collection ResolvedAssemblyFiles { get { throw null; } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct EventRegistrationToken { private int _dummyPrimitive; public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken left, System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken right) { throw null; } public static bool operator !=(System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken left, System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken right) { throw null; } } public sealed partial class EventRegistrationTokenTable where T : class { public EventRegistrationTokenTable() { } public T InvocationList { get { throw null; } set { } } public System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken AddEventHandler(T handler) { throw null; } public static System.Runtime.InteropServices.WindowsRuntime.EventRegistrationTokenTable GetOrCreateEventRegistrationTokenTable(ref System.Runtime.InteropServices.WindowsRuntime.EventRegistrationTokenTable refEventTable) { throw null; } public void RemoveEventHandler(System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken token) { } public void RemoveEventHandler(T handler) { } } [System.Runtime.InteropServices.GuidAttribute("00000035-0000-0000-C000-000000000046")] public partial interface IActivationFactory { object ActivateInstance(); } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Interface, Inherited=false, AllowMultiple=true)] public sealed partial class InterfaceImplementedInVersionAttribute : System.Attribute { public InterfaceImplementedInVersionAttribute(System.Type interfaceType, byte majorVersion, byte minorVersion, byte buildVersion, byte revisionVersion) { } public byte BuildVersion { get { throw null; } } public System.Type InterfaceType { get { throw null; } } public byte MajorVersion { get { throw null; } } public byte MinorVersion { get { throw null; } } public byte RevisionVersion { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public partial class NamespaceResolveEventArgs : System.EventArgs { public NamespaceResolveEventArgs(string namespaceName, System.Reflection.Assembly requestingAssembly) { } public string NamespaceName { get { throw null; } } public System.Reflection.Assembly RequestingAssembly { get { throw null; } } public System.Collections.ObjectModel.Collection ResolvedAssemblies { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] public sealed partial class ReadOnlyArrayAttribute : System.Attribute { public ReadOnlyArrayAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Delegate | System.AttributeTargets.ReturnValue, AllowMultiple=false, Inherited=false)] public sealed partial class ReturnValueNameAttribute : System.Attribute { public ReturnValueNameAttribute(string name) { } public string Name { get { throw null; } } } public static partial class WindowsRuntimeMarshal { [System.Security.SecurityCriticalAttribute] public static void AddEventHandler(System.Func addMethod, System.Action removeMethod, T handler) { } [System.Security.SecurityCriticalAttribute] public static void FreeHString(System.IntPtr ptr) { } [System.Security.SecurityCriticalAttribute] public static System.Runtime.InteropServices.WindowsRuntime.IActivationFactory GetActivationFactory(System.Type type) { throw null; } [System.Security.SecurityCriticalAttribute] public static string PtrToStringHString(System.IntPtr ptr) { throw null; } [System.Security.SecurityCriticalAttribute] public static void RemoveAllEventHandlers(System.Action removeMethod) { } [System.Security.SecurityCriticalAttribute] public static void RemoveEventHandler(System.Action removeMethod, T handler) { } [System.Security.SecurityCriticalAttribute] public static System.IntPtr StringToHString(string s) { throw null; } } [System.MonoTODOAttribute] public static partial class WindowsRuntimeMetadata { public static event System.EventHandler DesignerNamespaceResolve { add { } remove { } } public static event System.EventHandler ReflectionOnlyNamespaceResolve { add { } remove { } } public static System.Collections.Generic.IEnumerable ResolveNamespace(string namespaceName, System.Collections.Generic.IEnumerable packageGraphFilePaths) { throw null; } public static System.Collections.Generic.IEnumerable ResolveNamespace(string namespaceName, string windowsSdkFilePath, System.Collections.Generic.IEnumerable packageGraphFilePaths) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false, AllowMultiple=false)] public sealed partial class WriteOnlyArrayAttribute : System.Attribute { public WriteOnlyArrayAttribute() { } } } namespace System.Runtime.Remoting { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ActivatedClientTypeEntry : System.Runtime.Remoting.TypeEntry { public ActivatedClientTypeEntry(string typeName, string assemblyName, string appUrl) { } public ActivatedClientTypeEntry(System.Type type, string appUrl) { } public string ApplicationUrl { get { throw null; } } public System.Runtime.Remoting.Contexts.IContextAttribute[] ContextAttributes { get { throw null; } set { } } public System.Type ObjectType { get { throw null; } } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ActivatedServiceTypeEntry : System.Runtime.Remoting.TypeEntry { public ActivatedServiceTypeEntry(string typeName, string assemblyName) { } public ActivatedServiceTypeEntry(System.Type type) { } public System.Runtime.Remoting.Contexts.IContextAttribute[] ContextAttributes { get { throw null; } set { } } public System.Type ObjectType { get { throw null; } } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum CustomErrorsModes { Off = 1, On = 0, RemoteOnly = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IChannelInfo { object[] ChannelData { get; set; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IEnvoyInfo { System.Runtime.Remoting.Messaging.IMessageSink EnvoySinks { get; set; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class InternalRemotingServices { public InternalRemotingServices() { } [System.Diagnostics.ConditionalAttribute("_LOGGING")] public static void DebugOutChnl(string s) { } public static System.Runtime.Remoting.Metadata.SoapAttribute GetCachedSoapAttribute(object reflectionObject) { throw null; } [System.Diagnostics.ConditionalAttribute("_DEBUG")] public static void RemotingAssert(bool condition, string message) { } [System.Diagnostics.ConditionalAttribute("_LOGGING")] public static void RemotingTrace(params object[] messages) { } [System.CLSCompliantAttribute(false)] public static void SetServerIdentity(System.Runtime.Remoting.Messaging.MethodCall m, object srvID) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.GuidAttribute("C460E2B4-E199-412a-8456-84DC3E4838C3")] [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] public partial interface IObjectHandle { object Unwrap(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IRemotingTypeInfo { string TypeName { get; set; } bool CanCastTo(System.Type fromType, object o); } [System.Runtime.InteropServices.ClassInterfaceAttribute(System.Runtime.InteropServices.ClassInterfaceType.AutoDual)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ObjectHandle : System.MarshalByRefObject, System.Runtime.Remoting.IObjectHandle { public ObjectHandle(object o) { } public override object InitializeLifetimeService() { throw null; } public object Unwrap() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ObjRef : System.Runtime.Serialization.IObjectReference, System.Runtime.Serialization.ISerializable { public ObjRef() { } public ObjRef(System.MarshalByRefObject o, System.Type requestedType) { } protected ObjRef(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual System.Runtime.Remoting.IChannelInfo ChannelInfo { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } set { } } public virtual System.Runtime.Remoting.IEnvoyInfo EnvoyInfo { get { throw null; } set { } } public virtual System.Runtime.Remoting.IRemotingTypeInfo TypeInfo { get { throw null; } set { } } public virtual string URI { get { throw null; } set { } } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual object GetRealObject(System.Runtime.Serialization.StreamingContext context) { throw null; } public bool IsFromThisAppDomain() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public bool IsFromThisProcess() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class RemotingConfiguration { public static string ApplicationId { get { throw null; } } public static string ApplicationName { get { throw null; } set { } } [System.MonoTODOAttribute] public static System.Runtime.Remoting.CustomErrorsModes CustomErrorsMode { get { throw null; } set { } } public static string ProcessId { get { throw null; } } [System.ObsoleteAttribute("Use Configure(String,Boolean)")] public static void Configure(string filename) { } [System.MonoTODOAttribute("ensureSecurity support has not been implemented")] public static void Configure(string filename, bool ensureSecurity) { } public static bool CustomErrorsEnabled(bool isLocalRequest) { throw null; } public static System.Runtime.Remoting.ActivatedClientTypeEntry[] GetRegisteredActivatedClientTypes() { throw null; } public static System.Runtime.Remoting.ActivatedServiceTypeEntry[] GetRegisteredActivatedServiceTypes() { throw null; } public static System.Runtime.Remoting.WellKnownClientTypeEntry[] GetRegisteredWellKnownClientTypes() { throw null; } public static System.Runtime.Remoting.WellKnownServiceTypeEntry[] GetRegisteredWellKnownServiceTypes() { throw null; } public static bool IsActivationAllowed(System.Type svrType) { throw null; } public static System.Runtime.Remoting.ActivatedClientTypeEntry IsRemotelyActivatedClientType(string typeName, string assemblyName) { throw null; } public static System.Runtime.Remoting.ActivatedClientTypeEntry IsRemotelyActivatedClientType(System.Type svrType) { throw null; } public static System.Runtime.Remoting.WellKnownClientTypeEntry IsWellKnownClientType(string typeName, string assemblyName) { throw null; } public static System.Runtime.Remoting.WellKnownClientTypeEntry IsWellKnownClientType(System.Type svrType) { throw null; } public static void RegisterActivatedClientType(System.Runtime.Remoting.ActivatedClientTypeEntry entry) { } public static void RegisterActivatedClientType(System.Type type, string appUrl) { } public static void RegisterActivatedServiceType(System.Runtime.Remoting.ActivatedServiceTypeEntry entry) { } public static void RegisterActivatedServiceType(System.Type type) { } public static void RegisterWellKnownClientType(System.Runtime.Remoting.WellKnownClientTypeEntry entry) { } public static void RegisterWellKnownClientType(System.Type type, string objectUrl) { } public static void RegisterWellKnownServiceType(System.Runtime.Remoting.WellKnownServiceTypeEntry entry) { } public static void RegisterWellKnownServiceType(System.Type type, string objectUri, System.Runtime.Remoting.WellKnownObjectMode mode) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class RemotingException : System.SystemException { public RemotingException() { } protected RemotingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public RemotingException(string message) { } public RemotingException(string message, System.Exception InnerException) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class RemotingServices { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static object Connect(System.Type classToProxy, string url) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static object Connect(System.Type classToProxy, string url, object data) { throw null; } public static bool Disconnect(System.MarshalByRefObject obj) { throw null; } public static System.Runtime.Remoting.Messaging.IMethodReturnMessage ExecuteMessage(System.MarshalByRefObject target, System.Runtime.Remoting.Messaging.IMethodCallMessage reqMsg) { throw null; } public static System.Runtime.Remoting.Messaging.IMessageSink GetEnvoyChainForProxy(System.MarshalByRefObject obj) { throw null; } public static object GetLifetimeService(System.MarshalByRefObject obj) { throw null; } public static System.Reflection.MethodBase GetMethodBaseFromMethodMessage(System.Runtime.Remoting.Messaging.IMethodMessage msg) { throw null; } public static void GetObjectData(object obj, System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public static string GetObjectUri(System.MarshalByRefObject obj) { throw null; } public static System.Runtime.Remoting.ObjRef GetObjRefForProxy(System.MarshalByRefObject obj) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.Runtime.Remoting.Proxies.RealProxy GetRealProxy(object proxy) { throw null; } public static System.Type GetServerTypeForUri(string URI) { throw null; } public static string GetSessionIdForMethodMessage(System.Runtime.Remoting.Messaging.IMethodMessage msg) { throw null; } public static bool IsMethodOverloaded(System.Runtime.Remoting.Messaging.IMethodMessage msg) { throw null; } public static bool IsObjectOutOfAppDomain(object tp) { throw null; } public static bool IsObjectOutOfContext(object tp) { throw null; } public static bool IsOneWay(System.Reflection.MethodBase method) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static bool IsTransparentProxy(object proxy) { throw null; } [System.Diagnostics.ConditionalAttribute("REMOTING_PERF")] [System.MonoTODOAttribute] [System.ObsoleteAttribute("It existed for only internal use in .NET and unimplemented in mono")] public static void LogRemotingStage(int stage) { } public static System.Runtime.Remoting.ObjRef Marshal(System.MarshalByRefObject Obj) { throw null; } public static System.Runtime.Remoting.ObjRef Marshal(System.MarshalByRefObject Obj, string URI) { throw null; } public static System.Runtime.Remoting.ObjRef Marshal(System.MarshalByRefObject Obj, string ObjURI, System.Type RequestedType) { throw null; } public static void SetObjectUriForMarshal(System.MarshalByRefObject obj, string uri) { } public static object Unmarshal(System.Runtime.Remoting.ObjRef objectRef) { throw null; } public static object Unmarshal(System.Runtime.Remoting.ObjRef objectRef, bool fRefine) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class RemotingTimeoutException : System.Runtime.Remoting.RemotingException { public RemotingTimeoutException() { } public RemotingTimeoutException(string message) { } public RemotingTimeoutException(string message, System.Exception InnerException) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ServerException : System.SystemException { public ServerException() { } public ServerException(string message) { } public ServerException(string message, System.Exception InnerException) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SoapServices { internal SoapServices() { } public static string XmlNsForClrType { get { throw null; } } public static string XmlNsForClrTypeWithAssembly { get { throw null; } } public static string XmlNsForClrTypeWithNs { get { throw null; } } public static string XmlNsForClrTypeWithNsAndAssembly { get { throw null; } } public static string CodeXmlNamespaceForClrTypeNamespace(string typeNamespace, string assemblyName) { throw null; } public static bool DecodeXmlNamespaceForClrTypeNamespace(string inNamespace, out string typeNamespace, out string assemblyName) { throw null; } public static void GetInteropFieldTypeAndNameFromXmlAttribute(System.Type containingType, string xmlAttribute, string xmlNamespace, out System.Type type, out string name) { throw null; } public static void GetInteropFieldTypeAndNameFromXmlElement(System.Type containingType, string xmlElement, string xmlNamespace, out System.Type type, out string name) { throw null; } public static System.Type GetInteropTypeFromXmlElement(string xmlElement, string xmlNamespace) { throw null; } public static System.Type GetInteropTypeFromXmlType(string xmlType, string xmlTypeNamespace) { throw null; } public static string GetSoapActionFromMethodBase(System.Reflection.MethodBase mb) { throw null; } public static bool GetTypeAndMethodNameFromSoapAction(string soapAction, out string typeName, out string methodName) { throw null; } public static bool GetXmlElementForInteropType(System.Type type, out string xmlElement, out string xmlNamespace) { throw null; } public static string GetXmlNamespaceForMethodCall(System.Reflection.MethodBase mb) { throw null; } public static string GetXmlNamespaceForMethodResponse(System.Reflection.MethodBase mb) { throw null; } public static bool GetXmlTypeForInteropType(System.Type type, out string xmlType, out string xmlTypeNamespace) { throw null; } public static bool IsClrTypeNamespace(string namespaceString) { throw null; } public static bool IsSoapActionValidForMethodBase(string soapAction, System.Reflection.MethodBase mb) { throw null; } public static void PreLoad(System.Reflection.Assembly assembly) { } public static void PreLoad(System.Type type) { } public static void RegisterInteropXmlElement(string xmlElement, string xmlNamespace, System.Type type) { } public static void RegisterInteropXmlType(string xmlType, string xmlTypeNamespace, System.Type type) { } public static void RegisterSoapActionForMethodBase(System.Reflection.MethodBase mb) { } public static void RegisterSoapActionForMethodBase(System.Reflection.MethodBase mb, string soapAction) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class TypeEntry { protected TypeEntry() { } public string AssemblyName { get { throw null; } set { } } public string TypeName { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class WellKnownClientTypeEntry : System.Runtime.Remoting.TypeEntry { public WellKnownClientTypeEntry(string typeName, string assemblyName, string objectUrl) { } public WellKnownClientTypeEntry(System.Type type, string objectUrl) { } public string ApplicationUrl { get { throw null; } set { } } public System.Type ObjectType { get { throw null; } } public string ObjectUrl { get { throw null; } } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum WellKnownObjectMode { SingleCall = 2, Singleton = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class WellKnownServiceTypeEntry : System.Runtime.Remoting.TypeEntry { public WellKnownServiceTypeEntry(string typeName, string assemblyName, string objectUri, System.Runtime.Remoting.WellKnownObjectMode mode) { } public WellKnownServiceTypeEntry(System.Type type, string objectUri, System.Runtime.Remoting.WellKnownObjectMode mode) { } public System.Runtime.Remoting.Contexts.IContextAttribute[] ContextAttributes { get { throw null; } set { } } public System.Runtime.Remoting.WellKnownObjectMode Mode { get { throw null; } } public System.Type ObjectType { get { throw null; } } public string ObjectUri { get { throw null; } } public override string ToString() { throw null; } } } namespace System.Runtime.Remoting.Activation { [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum ActivatorLevel { AppDomain = 12, Construction = 4, Context = 8, Machine = 20, Process = 16, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IActivator { System.Runtime.Remoting.Activation.ActivatorLevel Level { get; } System.Runtime.Remoting.Activation.IActivator NextActivator { get; set; } System.Runtime.Remoting.Activation.IConstructionReturnMessage Activate(System.Runtime.Remoting.Activation.IConstructionCallMessage msg); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IConstructionCallMessage : System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodCallMessage, System.Runtime.Remoting.Messaging.IMethodMessage { System.Type ActivationType { get; } string ActivationTypeName { get; } System.Runtime.Remoting.Activation.IActivator Activator { get; set; } object[] CallSiteActivationAttributes { get; } System.Collections.IList ContextProperties { get; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IConstructionReturnMessage : System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodMessage, System.Runtime.Remoting.Messaging.IMethodReturnMessage { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class UrlAttribute : System.Runtime.Remoting.Contexts.ContextAttribute { public UrlAttribute(string callsiteURL) : base (default(string)) { } public string UrlValue { get { throw null; } } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override void GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage ctorMsg) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override bool IsContextOK(System.Runtime.Remoting.Contexts.Context ctx, System.Runtime.Remoting.Activation.IConstructionCallMessage msg) { throw null; } } } namespace System.Runtime.Remoting.Channels { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class BaseChannelObjectWithProperties : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable { protected BaseChannelObjectWithProperties() { } public virtual int Count { get { throw null; } } public virtual bool IsFixedSize { get { throw null; } } public virtual bool IsReadOnly { get { throw null; } } public virtual bool IsSynchronized { get { throw null; } } public virtual object this[object key] { get { throw null; } set { } } public virtual System.Collections.ICollection Keys { get { throw null; } } public virtual System.Collections.IDictionary Properties { get { throw null; } } public virtual object SyncRoot { get { throw null; } } public virtual System.Collections.ICollection Values { get { throw null; } } public virtual void Add(object key, object value) { } public virtual void Clear() { } public virtual bool Contains(object key) { throw null; } public virtual void CopyTo(System.Array array, int index) { } public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; } public virtual void Remove(object key) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class BaseChannelSinkWithProperties : System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties { protected BaseChannelSinkWithProperties() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class BaseChannelWithProperties : System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties { protected System.Runtime.Remoting.Channels.IChannelSinkBase SinksWithProperties; protected BaseChannelWithProperties() { } public override System.Collections.IDictionary Properties { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ChannelDataStore : System.Runtime.Remoting.Channels.IChannelDataStore { public ChannelDataStore(string[] channelURIs) { } public string[] ChannelUris { get { throw null; } set { } } public object this[object key] { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ChannelServices { internal ChannelServices() { } public static System.Runtime.Remoting.Channels.IChannel[] RegisteredChannels { get { throw null; } } public static System.Runtime.Remoting.Messaging.IMessageCtrl AsyncDispatchMessage(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Messaging.IMessageSink replySink) { throw null; } public static System.Runtime.Remoting.Channels.IServerChannelSink CreateServerChannelSinkChain(System.Runtime.Remoting.Channels.IServerChannelSinkProvider provider, System.Runtime.Remoting.Channels.IChannelReceiver channel) { throw null; } public static System.Runtime.Remoting.Channels.ServerProcessing DispatchMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack sinkStack, System.Runtime.Remoting.Messaging.IMessage msg, out System.Runtime.Remoting.Messaging.IMessage replyMsg) { throw null; } public static System.Runtime.Remoting.Channels.IChannel GetChannel(string name) { throw null; } public static System.Collections.IDictionary GetChannelSinkProperties(object obj) { throw null; } public static string[] GetUrlsForObject(System.MarshalByRefObject obj) { throw null; } [System.ObsoleteAttribute("Use RegisterChannel(IChannel,Boolean)")] public static void RegisterChannel(System.Runtime.Remoting.Channels.IChannel chnl) { } public static void RegisterChannel(System.Runtime.Remoting.Channels.IChannel chnl, bool ensureSecurity) { } public static System.Runtime.Remoting.Messaging.IMessage SyncDispatchMessage(System.Runtime.Remoting.Messaging.IMessage msg) { throw null; } public static void UnregisterChannel(System.Runtime.Remoting.Channels.IChannel chnl) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ClientChannelSinkStack : System.Runtime.Remoting.Channels.IClientChannelSinkStack, System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack { public ClientChannelSinkStack() { } public ClientChannelSinkStack(System.Runtime.Remoting.Messaging.IMessageSink replySink) { } public void AsyncProcessResponse(System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream) { } public void DispatchException(System.Exception e) { } public void DispatchReplyMessage(System.Runtime.Remoting.Messaging.IMessage msg) { } public object Pop(System.Runtime.Remoting.Channels.IClientChannelSink sink) { throw null; } public void Push(System.Runtime.Remoting.Channels.IClientChannelSink sink, object state) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IChannel { string ChannelName { get; } int ChannelPriority { get; } string Parse(string url, out string objectURI); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IChannelDataStore { string[] ChannelUris { get; } object this[object key] { get; set; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IChannelReceiver : System.Runtime.Remoting.Channels.IChannel { object ChannelData { get; } string[] GetUrlsForUri(string objectURI); void StartListening(object data); void StopListening(object data); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IChannelReceiverHook { string ChannelScheme { get; } System.Runtime.Remoting.Channels.IServerChannelSink ChannelSinkChain { get; } bool WantsToListen { get; } void AddHookChannelUri(string channelUri); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IChannelSender : System.Runtime.Remoting.Channels.IChannel { System.Runtime.Remoting.Messaging.IMessageSink CreateMessageSink(string url, object remoteChannelData, out string objectURI); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IChannelSinkBase { System.Collections.IDictionary Properties { get; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IClientChannelSink : System.Runtime.Remoting.Channels.IChannelSinkBase { System.Runtime.Remoting.Channels.IClientChannelSink NextChannelSink { get; } void AsyncProcessRequest(System.Runtime.Remoting.Channels.IClientChannelSinkStack sinkStack, System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream); void AsyncProcessResponse(System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack sinkStack, object state, System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream); System.IO.Stream GetRequestStream(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers); void ProcessMessage(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders requestHeaders, System.IO.Stream requestStream, out System.Runtime.Remoting.Channels.ITransportHeaders responseHeaders, out System.IO.Stream responseStream); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IClientChannelSinkProvider { System.Runtime.Remoting.Channels.IClientChannelSinkProvider Next { get; set; } System.Runtime.Remoting.Channels.IClientChannelSink CreateSink(System.Runtime.Remoting.Channels.IChannelSender channel, string url, object remoteChannelData); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IClientChannelSinkStack : System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack { object Pop(System.Runtime.Remoting.Channels.IClientChannelSink sink); void Push(System.Runtime.Remoting.Channels.IClientChannelSink sink, object state); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IClientFormatterSink : System.Runtime.Remoting.Channels.IChannelSinkBase, System.Runtime.Remoting.Channels.IClientChannelSink, System.Runtime.Remoting.Messaging.IMessageSink { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IClientFormatterSinkProvider : System.Runtime.Remoting.Channels.IClientChannelSinkProvider { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IClientResponseChannelSinkStack { void AsyncProcessResponse(System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream); void DispatchException(System.Exception e); void DispatchReplyMessage(System.Runtime.Remoting.Messaging.IMessage msg); } public partial interface ISecurableChannel { bool IsSecured { get; set; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IServerChannelSink : System.Runtime.Remoting.Channels.IChannelSinkBase { System.Runtime.Remoting.Channels.IServerChannelSink NextChannelSink { get; } void AsyncProcessResponse(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack sinkStack, object state, System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream); System.IO.Stream GetResponseStream(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack sinkStack, object state, System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers); System.Runtime.Remoting.Channels.ServerProcessing ProcessMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack sinkStack, System.Runtime.Remoting.Messaging.IMessage requestMsg, System.Runtime.Remoting.Channels.ITransportHeaders requestHeaders, System.IO.Stream requestStream, out System.Runtime.Remoting.Messaging.IMessage responseMsg, out System.Runtime.Remoting.Channels.ITransportHeaders responseHeaders, out System.IO.Stream responseStream); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IServerChannelSinkProvider { System.Runtime.Remoting.Channels.IServerChannelSinkProvider Next { get; set; } System.Runtime.Remoting.Channels.IServerChannelSink CreateSink(System.Runtime.Remoting.Channels.IChannelReceiver channel); void GetChannelData(System.Runtime.Remoting.Channels.IChannelDataStore channelData); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IServerChannelSinkStack : System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack { object Pop(System.Runtime.Remoting.Channels.IServerChannelSink sink); void Push(System.Runtime.Remoting.Channels.IServerChannelSink sink, object state); void ServerCallback(System.IAsyncResult ar); void Store(System.Runtime.Remoting.Channels.IServerChannelSink sink, object state); void StoreAndDispatch(System.Runtime.Remoting.Channels.IServerChannelSink sink, object state); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IServerFormatterSinkProvider : System.Runtime.Remoting.Channels.IServerChannelSinkProvider { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IServerResponseChannelSinkStack { void AsyncProcessResponse(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream); System.IO.Stream GetResponseStream(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ITransportHeaders { object this[object key] { get; set; } System.Collections.IEnumerator GetEnumerator(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ServerChannelSinkStack : System.Runtime.Remoting.Channels.IServerChannelSinkStack, System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack { public ServerChannelSinkStack() { } public void AsyncProcessResponse(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers, System.IO.Stream stream) { } public System.IO.Stream GetResponseStream(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Channels.ITransportHeaders headers) { throw null; } public object Pop(System.Runtime.Remoting.Channels.IServerChannelSink sink) { throw null; } public void Push(System.Runtime.Remoting.Channels.IServerChannelSink sink, object state) { } [System.MonoTODOAttribute] public void ServerCallback(System.IAsyncResult ar) { } [System.MonoTODOAttribute] public void Store(System.Runtime.Remoting.Channels.IServerChannelSink sink, object state) { } [System.MonoTODOAttribute] public void StoreAndDispatch(System.Runtime.Remoting.Channels.IServerChannelSink sink, object state) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum ServerProcessing { Async = 2, Complete = 0, OneWay = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SinkProviderData { public SinkProviderData(string name) { } public System.Collections.IList Children { get { throw null; } } public string Name { get { throw null; } } public System.Collections.IDictionary Properties { get { throw null; } } } [System.MonoTODOAttribute("Serialization format not compatible with .NET")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class TransportHeaders : System.Runtime.Remoting.Channels.ITransportHeaders { public TransportHeaders() { } public object this[object key] { get { throw null; } set { } } public System.Collections.IEnumerator GetEnumerator() { throw null; } } } namespace System.Runtime.Remoting.Contexts { [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class Context { public Context() { } public virtual int ContextID { get { throw null; } } public virtual System.Runtime.Remoting.Contexts.IContextProperty[] ContextProperties { get { throw null; } } public static System.Runtime.Remoting.Contexts.Context DefaultContext { get { throw null; } } public static System.LocalDataStoreSlot AllocateDataSlot() { throw null; } public static System.LocalDataStoreSlot AllocateNamedDataSlot(string name) { throw null; } public void DoCallBack(System.Runtime.Remoting.Contexts.CrossContextDelegate deleg) { } ~Context() { } public static void FreeNamedDataSlot(string name) { } public virtual void Freeze() { } public static object GetData(System.LocalDataStoreSlot slot) { throw null; } public static System.LocalDataStoreSlot GetNamedDataSlot(string name) { throw null; } public virtual System.Runtime.Remoting.Contexts.IContextProperty GetProperty(string name) { throw null; } public static bool RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty prop, System.ContextBoundObject obj, System.Runtime.Remoting.Contexts.Context ctx) { throw null; } public static void SetData(System.LocalDataStoreSlot slot, object data) { } public virtual void SetProperty(System.Runtime.Remoting.Contexts.IContextProperty prop) { } public override string ToString() { throw null; } public static bool UnregisterDynamicProperty(string name, System.ContextBoundObject obj, System.Runtime.Remoting.Contexts.Context ctx) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Class)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ContextAttribute : System.Attribute, System.Runtime.Remoting.Contexts.IContextAttribute, System.Runtime.Remoting.Contexts.IContextProperty { protected string AttributeName; public ContextAttribute(string name) { } public virtual string Name { get { throw null; } } public override bool Equals(object o) { throw null; } public virtual void Freeze(System.Runtime.Remoting.Contexts.Context newContext) { } public override int GetHashCode() { throw null; } public virtual void GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage ctorMsg) { } public virtual bool IsContextOK(System.Runtime.Remoting.Contexts.Context ctx, System.Runtime.Remoting.Activation.IConstructionCallMessage ctorMsg) { throw null; } public virtual bool IsNewContextOK(System.Runtime.Remoting.Contexts.Context newCtx) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ContextProperty { internal ContextProperty() { } public virtual string Name { get { throw null; } } public virtual object Property { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate void CrossContextDelegate(); [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContextAttribute { void GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage msg); bool IsContextOK(System.Runtime.Remoting.Contexts.Context ctx, System.Runtime.Remoting.Activation.IConstructionCallMessage msg); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContextProperty { string Name { get; } void Freeze(System.Runtime.Remoting.Contexts.Context newContext); bool IsNewContextOK(System.Runtime.Remoting.Contexts.Context newCtx); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContextPropertyActivator { void CollectFromClientContext(System.Runtime.Remoting.Activation.IConstructionCallMessage msg); void CollectFromServerContext(System.Runtime.Remoting.Activation.IConstructionReturnMessage msg); bool DeliverClientContextToServerContext(System.Runtime.Remoting.Activation.IConstructionCallMessage msg); bool DeliverServerContextToClientContext(System.Runtime.Remoting.Activation.IConstructionReturnMessage msg); bool IsOKToActivate(System.Runtime.Remoting.Activation.IConstructionCallMessage msg); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContributeClientContextSink { System.Runtime.Remoting.Messaging.IMessageSink GetClientContextSink(System.Runtime.Remoting.Messaging.IMessageSink nextSink); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContributeDynamicSink { System.Runtime.Remoting.Contexts.IDynamicMessageSink GetDynamicSink(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContributeEnvoySink { System.Runtime.Remoting.Messaging.IMessageSink GetEnvoySink(System.MarshalByRefObject obj, System.Runtime.Remoting.Messaging.IMessageSink nextSink); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContributeObjectSink { System.Runtime.Remoting.Messaging.IMessageSink GetObjectSink(System.MarshalByRefObject obj, System.Runtime.Remoting.Messaging.IMessageSink nextSink); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IContributeServerContextSink { System.Runtime.Remoting.Messaging.IMessageSink GetServerContextSink(System.Runtime.Remoting.Messaging.IMessageSink nextSink); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IDynamicMessageSink { void ProcessMessageFinish(System.Runtime.Remoting.Messaging.IMessage replyMsg, bool bCliSide, bool bAsync); void ProcessMessageStart(System.Runtime.Remoting.Messaging.IMessage reqMsg, bool bCliSide, bool bAsync); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IDynamicProperty { string Name { get; } } [System.AttributeUsageAttribute(System.AttributeTargets.Class)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class SynchronizationAttribute : System.Runtime.Remoting.Contexts.ContextAttribute, System.Runtime.Remoting.Contexts.IContributeClientContextSink, System.Runtime.Remoting.Contexts.IContributeServerContextSink { public const int NOT_SUPPORTED = 1; public const int REQUIRED = 4; public const int REQUIRES_NEW = 8; public const int SUPPORTED = 2; public SynchronizationAttribute() : base (default(string)) { } public SynchronizationAttribute(bool reEntrant) : base (default(string)) { } public SynchronizationAttribute(int flag) : base (default(string)) { } public SynchronizationAttribute(int flag, bool reEntrant) : base (default(string)) { } public virtual bool IsReEntrant { get { throw null; } } public virtual bool Locked { get { throw null; } set { } } public virtual System.Runtime.Remoting.Messaging.IMessageSink GetClientContextSink(System.Runtime.Remoting.Messaging.IMessageSink nextSink) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override void GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage ctorMsg) { } public virtual System.Runtime.Remoting.Messaging.IMessageSink GetServerContextSink(System.Runtime.Remoting.Messaging.IMessageSink nextSink) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public override bool IsContextOK(System.Runtime.Remoting.Contexts.Context ctx, System.Runtime.Remoting.Activation.IConstructionCallMessage msg) { throw null; } } } namespace System.Runtime.Remoting.Lifetime { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ClientSponsor : System.MarshalByRefObject, System.Runtime.Remoting.Lifetime.ISponsor { public ClientSponsor() { } public ClientSponsor(System.TimeSpan renewalTime) { } public System.TimeSpan RenewalTime { get { throw null; } set { } } public void Close() { } ~ClientSponsor() { } public override object InitializeLifetimeService() { throw null; } public bool Register(System.MarshalByRefObject obj) { throw null; } public System.TimeSpan Renewal(System.Runtime.Remoting.Lifetime.ILease lease) { throw null; } public void Unregister(System.MarshalByRefObject obj) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ILease { System.TimeSpan CurrentLeaseTime { get; } System.Runtime.Remoting.Lifetime.LeaseState CurrentState { get; } System.TimeSpan InitialLeaseTime { get; set; } System.TimeSpan RenewOnCallTime { get; set; } System.TimeSpan SponsorshipTimeout { get; set; } void Register(System.Runtime.Remoting.Lifetime.ISponsor obj); void Register(System.Runtime.Remoting.Lifetime.ISponsor obj, System.TimeSpan renewalTime); System.TimeSpan Renew(System.TimeSpan renewalTime); void Unregister(System.Runtime.Remoting.Lifetime.ISponsor obj); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISponsor { System.TimeSpan Renewal(System.Runtime.Remoting.Lifetime.ILease lease); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum LeaseState { Active = 2, Expired = 4, Initial = 1, Null = 0, Renewing = 3, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class LifetimeServices { [System.ObsoleteAttribute("Call the static methods directly on this type instead", true)] public LifetimeServices() { } public static System.TimeSpan LeaseManagerPollTime { get { throw null; } set { } } public static System.TimeSpan LeaseTime { get { throw null; } set { } } public static System.TimeSpan RenewOnCallTime { get { throw null; } set { } } public static System.TimeSpan SponsorshipTimeout { get { throw null; } set { } } } } namespace System.Runtime.Remoting.Messaging { [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial class AsyncResult : System.IAsyncResult, System.Runtime.Remoting.Messaging.IMessageSink { internal AsyncResult() { } public virtual object AsyncDelegate { get { throw null; } } public virtual object AsyncState { get { throw null; } } public virtual System.Threading.WaitHandle AsyncWaitHandle { get { throw null; } } public virtual bool CompletedSynchronously { get { throw null; } } public bool EndInvokeCalled { get { throw null; } set { } } public virtual bool IsCompleted { get { throw null; } } public System.Runtime.Remoting.Messaging.IMessageSink NextSink { get { throw null; } } public virtual System.Runtime.Remoting.Messaging.IMessageCtrl AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Messaging.IMessageSink replySink) { throw null; } public virtual System.Runtime.Remoting.Messaging.IMessage GetReplyMessage() { throw null; } public virtual void SetMessageCtrl(System.Runtime.Remoting.Messaging.IMessageCtrl mc) { } public virtual System.Runtime.Remoting.Messaging.IMessage SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage msg) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecurityCriticalAttribute] [System.SerializableAttribute] public sealed partial class CallContext { internal CallContext() { } public static object HostContext { [System.Security.SecurityCriticalAttribute]get { throw null; } [System.Security.SecurityCriticalAttribute]set { } } [System.Security.SecurityCriticalAttribute] public static void FreeNamedDataSlot(string name) { } [System.Security.SecurityCriticalAttribute] public static object GetData(string name) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Runtime.Remoting.Messaging.Header[] GetHeaders() { throw null; } [System.Security.SecurityCriticalAttribute] public static object LogicalGetData(string name) { throw null; } [System.Security.SecurityCriticalAttribute] public static void LogicalSetData(string name, object data) { } [System.Security.SecurityCriticalAttribute] public static void SetData(string name, object data) { } [System.Security.SecurityCriticalAttribute] public static void SetHeaders(System.Runtime.Remoting.Messaging.Header[] headers) { } } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ConstructionCall : System.Runtime.Remoting.Messaging.MethodCall, System.Runtime.Remoting.Activation.IConstructionCallMessage, System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodCallMessage, System.Runtime.Remoting.Messaging.IMethodMessage { public ConstructionCall(System.Runtime.Remoting.Messaging.Header[] headers) : base (default(System.Runtime.Remoting.Messaging.Header[])) { } public ConstructionCall(System.Runtime.Remoting.Messaging.IMessage m) : base (default(System.Runtime.Remoting.Messaging.Header[])) { } public System.Type ActivationType { get { throw null; } } public string ActivationTypeName { get { throw null; } } public System.Runtime.Remoting.Activation.IActivator Activator { get { throw null; } set { } } public object[] CallSiteActivationAttributes { get { throw null; } } public System.Collections.IList ContextProperties { get { throw null; } } public override System.Collections.IDictionary Properties { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ConstructionResponse : System.Runtime.Remoting.Messaging.MethodResponse, System.Runtime.Remoting.Activation.IConstructionReturnMessage, System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodMessage, System.Runtime.Remoting.Messaging.IMethodReturnMessage { public ConstructionResponse(System.Runtime.Remoting.Messaging.Header[] h, System.Runtime.Remoting.Messaging.IMethodCallMessage mcm) : base (default(System.Runtime.Remoting.Messaging.Header[]), default(System.Runtime.Remoting.Messaging.IMethodCallMessage)) { } public override System.Collections.IDictionary Properties { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class Header { public string HeaderNamespace; public bool MustUnderstand; public string Name; public object Value; public Header(string _Name, object _Value) { } public Header(string _Name, object _Value, bool _MustUnderstand) { } public Header(string _Name, object _Value, bool _MustUnderstand, string _HeaderNamespace) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate object HeaderHandler(System.Runtime.Remoting.Messaging.Header[] headers); [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ILogicalThreadAffinative { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IMessage { System.Collections.IDictionary Properties { get; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IMessageCtrl { void Cancel(int msToCancel); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IMessageSink { System.Runtime.Remoting.Messaging.IMessageSink NextSink { get; } System.Runtime.Remoting.Messaging.IMessageCtrl AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage msg, System.Runtime.Remoting.Messaging.IMessageSink replySink); System.Runtime.Remoting.Messaging.IMessage SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage msg); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IMethodCallMessage : System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodMessage { int InArgCount { get; } object[] InArgs { get; } object GetInArg(int argNum); string GetInArgName(int index); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IMethodMessage : System.Runtime.Remoting.Messaging.IMessage { int ArgCount { get; } object[] Args { get; } bool HasVarArgs { get; } System.Runtime.Remoting.Messaging.LogicalCallContext LogicalCallContext { get; } System.Reflection.MethodBase MethodBase { get; } string MethodName { get; } object MethodSignature { get; } string TypeName { get; } string Uri { get; } object GetArg(int argNum); string GetArgName(int index); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IMethodReturnMessage : System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodMessage { System.Exception Exception { get; } int OutArgCount { get; } object[] OutArgs { get; } object ReturnValue { get; } object GetOutArg(int argNum); string GetOutArgName(int index); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class InternalMessageWrapper { protected System.Runtime.Remoting.Messaging.IMessage WrappedMessage; public InternalMessageWrapper(System.Runtime.Remoting.Messaging.IMessage msg) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IRemotingFormatter : System.Runtime.Serialization.IFormatter { object Deserialize(System.IO.Stream serializationStream, System.Runtime.Remoting.Messaging.HeaderHandler handler); void Serialize(System.IO.Stream serializationStream, object graph, System.Runtime.Remoting.Messaging.Header[] headers); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecurityCriticalAttribute] [System.SerializableAttribute] public sealed partial class LogicalCallContext : System.ICloneable, System.Runtime.Serialization.ISerializable { internal LogicalCallContext() { } public bool HasInfo { [System.Security.SecurityCriticalAttribute]get { throw null; } } [System.Security.SecuritySafeCriticalAttribute] public object Clone() { throw null; } [System.Security.SecurityCriticalAttribute] public void FreeNamedDataSlot(string name) { } [System.Security.SecurityCriticalAttribute] public object GetData(string name) { throw null; } [System.Security.SecurityCriticalAttribute] public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.Security.SecurityCriticalAttribute] public void SetData(string name, object data) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate bool MessageSurrogateFilter(string key, object value); [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class MethodCall : System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodCallMessage, System.Runtime.Remoting.Messaging.IMethodMessage, System.Runtime.Serialization.ISerializable { protected System.Collections.IDictionary ExternalProperties; protected System.Collections.IDictionary InternalProperties; public MethodCall(System.Runtime.Remoting.Messaging.Header[] h1) { } public MethodCall(System.Runtime.Remoting.Messaging.IMessage msg) { } public int ArgCount { get { throw null; } } public object[] Args { get { throw null; } } public bool HasVarArgs { get { throw null; } } public int InArgCount { get { throw null; } } public object[] InArgs { get { throw null; } } public System.Runtime.Remoting.Messaging.LogicalCallContext LogicalCallContext { get { throw null; } } public System.Reflection.MethodBase MethodBase { get { throw null; } } public string MethodName { get { throw null; } } public object MethodSignature { get { throw null; } } public virtual System.Collections.IDictionary Properties { get { throw null; } } public string TypeName { get { throw null; } } public string Uri { get { throw null; } set { } } public object GetArg(int argNum) { throw null; } public string GetArgName(int index) { throw null; } public object GetInArg(int argNum) { throw null; } public string GetInArgName(int index) { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.MonoTODOAttribute] public virtual object HeaderHandler(System.Runtime.Remoting.Messaging.Header[] h) { throw null; } public virtual void Init() { } public void ResolveMethod() { } [System.MonoTODOAttribute] public void RootSetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext ctx) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class MethodCallMessageWrapper : System.Runtime.Remoting.Messaging.InternalMessageWrapper, System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodCallMessage, System.Runtime.Remoting.Messaging.IMethodMessage { public MethodCallMessageWrapper(System.Runtime.Remoting.Messaging.IMethodCallMessage msg) : base (default(System.Runtime.Remoting.Messaging.IMessage)) { } public virtual int ArgCount { get { throw null; } } public virtual object[] Args { get { throw null; } set { } } public virtual bool HasVarArgs { get { throw null; } } public virtual int InArgCount { get { throw null; } } public virtual object[] InArgs { get { throw null; } } public virtual System.Runtime.Remoting.Messaging.LogicalCallContext LogicalCallContext { get { throw null; } } public virtual System.Reflection.MethodBase MethodBase { get { throw null; } } public virtual string MethodName { get { throw null; } } public virtual object MethodSignature { get { throw null; } } public virtual System.Collections.IDictionary Properties { get { throw null; } } public virtual string TypeName { get { throw null; } } public virtual string Uri { get { throw null; } set { } } public virtual object GetArg(int argNum) { throw null; } public virtual string GetArgName(int index) { throw null; } public virtual object GetInArg(int argNum) { throw null; } public virtual string GetInArgName(int index) { throw null; } } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class MethodResponse : System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodMessage, System.Runtime.Remoting.Messaging.IMethodReturnMessage, System.Runtime.Serialization.ISerializable { protected System.Collections.IDictionary ExternalProperties; protected System.Collections.IDictionary InternalProperties; public MethodResponse(System.Runtime.Remoting.Messaging.Header[] h1, System.Runtime.Remoting.Messaging.IMethodCallMessage mcm) { } public int ArgCount { get { throw null; } } public object[] Args { get { throw null; } } public System.Exception Exception { get { throw null; } } public bool HasVarArgs { get { throw null; } } public System.Runtime.Remoting.Messaging.LogicalCallContext LogicalCallContext { get { throw null; } } public System.Reflection.MethodBase MethodBase { get { throw null; } } public string MethodName { get { throw null; } } public object MethodSignature { get { throw null; } } public int OutArgCount { get { throw null; } } public object[] OutArgs { get { throw null; } } public virtual System.Collections.IDictionary Properties { get { throw null; } } public object ReturnValue { get { throw null; } } public string TypeName { get { throw null; } } public string Uri { get { throw null; } set { } } public object GetArg(int argNum) { throw null; } public string GetArgName(int index) { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public object GetOutArg(int argNum) { throw null; } public string GetOutArgName(int index) { throw null; } [System.MonoTODOAttribute] public virtual object HeaderHandler(System.Runtime.Remoting.Messaging.Header[] h) { throw null; } [System.MonoTODOAttribute] public void RootSetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext ctx) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class MethodReturnMessageWrapper : System.Runtime.Remoting.Messaging.InternalMessageWrapper, System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodMessage, System.Runtime.Remoting.Messaging.IMethodReturnMessage { public MethodReturnMessageWrapper(System.Runtime.Remoting.Messaging.IMethodReturnMessage msg) : base (default(System.Runtime.Remoting.Messaging.IMessage)) { } public virtual int ArgCount { get { throw null; } } public virtual object[] Args { get { throw null; } set { } } public virtual System.Exception Exception { get { throw null; } set { } } public virtual bool HasVarArgs { get { throw null; } } public virtual System.Runtime.Remoting.Messaging.LogicalCallContext LogicalCallContext { get { throw null; } } public virtual System.Reflection.MethodBase MethodBase { get { throw null; } } public virtual string MethodName { get { throw null; } } public virtual object MethodSignature { get { throw null; } } public virtual int OutArgCount { get { throw null; } } public virtual object[] OutArgs { get { throw null; } } public virtual System.Collections.IDictionary Properties { get { throw null; } } public virtual object ReturnValue { get { throw null; } set { } } public virtual string TypeName { get { throw null; } } public string Uri { get { throw null; } set { } } public virtual object GetArg(int argNum) { throw null; } public virtual string GetArgName(int index) { throw null; } public virtual object GetOutArg(int argNum) { throw null; } public virtual string GetOutArgName(int index) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Method)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class OneWayAttribute : System.Attribute { public OneWayAttribute() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RemotingSurrogateSelector : System.Runtime.Serialization.ISurrogateSelector { public RemotingSurrogateSelector() { } public System.Runtime.Remoting.Messaging.MessageSurrogateFilter Filter { get { throw null; } set { } } public virtual void ChainSelector(System.Runtime.Serialization.ISurrogateSelector selector) { } public virtual System.Runtime.Serialization.ISurrogateSelector GetNextSelector() { throw null; } public object GetRootObject() { throw null; } public virtual System.Runtime.Serialization.ISerializationSurrogate GetSurrogate(System.Type type, System.Runtime.Serialization.StreamingContext context, out System.Runtime.Serialization.ISurrogateSelector ssout) { throw null; } public void SetRootObject(object obj) { } [System.MonoTODOAttribute] public virtual void UseSoapFormat() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ReturnMessage : System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMethodMessage, System.Runtime.Remoting.Messaging.IMethodReturnMessage { public ReturnMessage(System.Exception e, System.Runtime.Remoting.Messaging.IMethodCallMessage mcm) { } public ReturnMessage(object ret, object[] outArgs, int outArgsCount, System.Runtime.Remoting.Messaging.LogicalCallContext callCtx, System.Runtime.Remoting.Messaging.IMethodCallMessage mcm) { } public int ArgCount { get { throw null; } } public object[] Args { get { throw null; } } public System.Exception Exception { get { throw null; } } public bool HasVarArgs { get { throw null; } } public System.Runtime.Remoting.Messaging.LogicalCallContext LogicalCallContext { get { throw null; } } public System.Reflection.MethodBase MethodBase { get { throw null; } } public string MethodName { get { throw null; } } public object MethodSignature { get { throw null; } } public int OutArgCount { get { throw null; } } public object[] OutArgs { get { throw null; } } public virtual System.Collections.IDictionary Properties { get { throw null; } } public virtual object ReturnValue { get { throw null; } } public string TypeName { get { throw null; } } public string Uri { get { throw null; } set { } } public object GetArg(int argNum) { throw null; } public string GetArgName(int index) { throw null; } public object GetOutArg(int argNum) { throw null; } public string GetOutArgName(int index) { throw null; } } } namespace System.Runtime.Remoting.Metadata { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SoapAttribute : System.Attribute { protected string ProtXmlNamespace; protected object ReflectInfo; public SoapAttribute() { } public virtual bool Embedded { get { throw null; } set { } } public virtual bool UseAttribute { get { throw null; } set { } } public virtual string XmlNamespace { get { throw null; } set { } } } [System.AttributeUsageAttribute(System.AttributeTargets.Field)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SoapFieldAttribute : System.Runtime.Remoting.Metadata.SoapAttribute { public SoapFieldAttribute() { } public int Order { get { throw null; } set { } } public string XmlElementName { get { throw null; } set { } } public bool IsInteropXmlElement() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Method)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SoapMethodAttribute : System.Runtime.Remoting.Metadata.SoapAttribute { public SoapMethodAttribute() { } public string ResponseXmlElementName { get { throw null; } set { } } public string ResponseXmlNamespace { get { throw null; } set { } } public string ReturnXmlElementName { get { throw null; } set { } } public string SoapAction { get { throw null; } set { } } public override bool UseAttribute { get { throw null; } set { } } public override string XmlNamespace { get { throw null; } set { } } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum SoapOption { AlwaysIncludeTypes = 1, EmbedAll = 4, None = 0, Option1 = 8, Option2 = 16, XsdString = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Parameter)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SoapParameterAttribute : System.Runtime.Remoting.Metadata.SoapAttribute { public SoapParameterAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SoapTypeAttribute : System.Runtime.Remoting.Metadata.SoapAttribute { public SoapTypeAttribute() { } public System.Runtime.Remoting.Metadata.SoapOption SoapOptions { get { throw null; } set { } } public override bool UseAttribute { get { throw null; } set { } } public string XmlElementName { get { throw null; } set { } } public System.Runtime.Remoting.Metadata.XmlFieldOrderOption XmlFieldOrder { get { throw null; } set { } } public override string XmlNamespace { get { throw null; } set { } } public string XmlTypeName { get { throw null; } set { } } public string XmlTypeNamespace { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum XmlFieldOrderOption { All = 0, Choice = 2, Sequence = 1, } } namespace System.Runtime.Remoting.Metadata.W3cXsd2001 { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISoapXsd { string GetXsdType(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapAnyUri : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapAnyUri() { } public SoapAnyUri(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapBase64Binary : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapBase64Binary() { } public SoapBase64Binary(byte[] value) { } public byte[] Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapDate : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapDate() { } public SoapDate(System.DateTime value) { } public SoapDate(System.DateTime value, int sign) { } public int Sign { get { throw null; } set { } } public System.DateTime Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SoapDateTime { public SoapDateTime() { } public static string XsdType { get { throw null; } } public static System.DateTime Parse(string value) { throw null; } public static string ToString(System.DateTime value) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapDay : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapDay() { } public SoapDay(System.DateTime value) { } public System.DateTime Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SoapDuration { public SoapDuration() { } public static string XsdType { get { throw null; } } public static System.TimeSpan Parse(string value) { throw null; } public static string ToString(System.TimeSpan timeSpan) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapEntities : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapEntities() { } public SoapEntities(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapEntity : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapEntity() { } public SoapEntity(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapHexBinary : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapHexBinary() { } public SoapHexBinary(byte[] value) { } public byte[] Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapId : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapId() { } public SoapId(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapIdref : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapIdref() { } public SoapIdref(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapIdrefs : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapIdrefs() { } public SoapIdrefs(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapInteger : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapInteger() { } public SoapInteger(decimal value) { } public decimal Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapLanguage : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapLanguage() { } public SoapLanguage(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapMonth : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapMonth() { } public SoapMonth(System.DateTime value) { } public System.DateTime Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapMonthDay : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapMonthDay() { } public SoapMonthDay(System.DateTime value) { } public System.DateTime Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapName : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapName() { } public SoapName(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNcName : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNcName() { } public SoapNcName(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNegativeInteger : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNegativeInteger() { } public SoapNegativeInteger(decimal value) { } public decimal Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNmtoken : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNmtoken() { } public SoapNmtoken(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNmtokens : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNmtokens() { } public SoapNmtokens(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNonNegativeInteger : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNonNegativeInteger() { } public SoapNonNegativeInteger(decimal value) { } public decimal Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNonPositiveInteger : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNonPositiveInteger() { } public SoapNonPositiveInteger(decimal value) { } public decimal Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNormalizedString : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNormalizedString() { } public SoapNormalizedString(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapNotation : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapNotation() { } public SoapNotation(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapPositiveInteger : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapPositiveInteger() { } public SoapPositiveInteger(decimal value) { } public decimal Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapQName : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapQName() { } public SoapQName(string value) { } public SoapQName(string key, string name) { } public SoapQName(string key, string name, string namespaceValue) { } public string Key { get { throw null; } set { } } public string Name { get { throw null; } set { } } public string Namespace { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapTime : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapTime() { } public SoapTime(System.DateTime value) { } public System.DateTime Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapToken : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapToken() { } public SoapToken(string value) { } public string Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapYear : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapYear() { } public SoapYear(System.DateTime value) { } public SoapYear(System.DateTime value, int sign) { } public int Sign { get { throw null; } set { } } public System.DateTime Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear Parse(string value) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SoapYearMonth : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd { public SoapYearMonth() { } public SoapYearMonth(System.DateTime value) { } public SoapYearMonth(System.DateTime value, int sign) { } public int Sign { get { throw null; } set { } } public System.DateTime Value { get { throw null; } set { } } public static string XsdType { get { throw null; } } public string GetXsdType() { throw null; } public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth Parse(string value) { throw null; } public override string ToString() { throw null; } } } namespace System.Runtime.Remoting.Proxies { [System.AttributeUsageAttribute(System.AttributeTargets.Class)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ProxyAttribute : System.Attribute, System.Runtime.Remoting.Contexts.IContextAttribute { public ProxyAttribute() { } public virtual System.MarshalByRefObject CreateInstance(System.Type serverType) { throw null; } public virtual System.Runtime.Remoting.Proxies.RealProxy CreateProxy(System.Runtime.Remoting.ObjRef objRef, System.Type serverType, object serverObject, System.Runtime.Remoting.Contexts.Context serverContext) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public void GetPropertiesForNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage msg) { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public bool IsContextOK(System.Runtime.Remoting.Contexts.Context ctx, System.Runtime.Remoting.Activation.IConstructionCallMessage msg) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class RealProxy { protected RealProxy() { } protected RealProxy(System.Type classToProxy) { } protected RealProxy(System.Type classToProxy, System.IntPtr stub, object stubData) { } protected void AttachServer(System.MarshalByRefObject s) { } public virtual System.Runtime.Remoting.ObjRef CreateObjRef(System.Type requestedType) { throw null; } protected System.MarshalByRefObject DetachServer() { throw null; } [System.MonoTODOAttribute] public virtual System.IntPtr GetCOMIUnknown(bool fIsMarshalled) { throw null; } public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public System.Type GetProxiedType() { throw null; } public static object GetStubData(System.Runtime.Remoting.Proxies.RealProxy rp) { throw null; } public virtual object GetTransparentProxy() { throw null; } protected System.MarshalByRefObject GetUnwrappedServer() { throw null; } [System.MonoTODOAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public System.Runtime.Remoting.Activation.IConstructionReturnMessage InitializeServerObject(System.Runtime.Remoting.Activation.IConstructionCallMessage ctorMsg) { throw null; } public abstract System.Runtime.Remoting.Messaging.IMessage Invoke(System.Runtime.Remoting.Messaging.IMessage msg); [System.MonoTODOAttribute] public virtual void SetCOMIUnknown(System.IntPtr i) { } public static void SetStubData(System.Runtime.Remoting.Proxies.RealProxy rp, object stubData) { } [System.MonoTODOAttribute] public virtual System.IntPtr SupportsInterface(ref System.Guid iid) { throw null; } } } namespace System.Runtime.Remoting.Services { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class EnterpriseServicesHelper { public EnterpriseServicesHelper() { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static System.Runtime.Remoting.Activation.IConstructionReturnMessage CreateConstructionReturnMessage(System.Runtime.Remoting.Activation.IConstructionCallMessage ctorMsg, System.MarshalByRefObject retObj) { throw null; } [System.MonoTODOAttribute] public static void SwitchWrappers(System.Runtime.Remoting.Proxies.RealProxy oldcp, System.Runtime.Remoting.Proxies.RealProxy newcp) { } [System.MonoTODOAttribute] public static object WrapIUnknownWithComObject(System.IntPtr punk) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ITrackingHandler { void DisconnectedObject(object obj); void MarshaledObject(object obj, System.Runtime.Remoting.ObjRef or); void UnmarshaledObject(object obj, System.Runtime.Remoting.ObjRef or); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class TrackingServices { public TrackingServices() { } public static System.Runtime.Remoting.Services.ITrackingHandler[] RegisteredHandlers { get { throw null; } } public static void RegisterTrackingHandler(System.Runtime.Remoting.Services.ITrackingHandler handler) { } public static void UnregisterTrackingHandler(System.Runtime.Remoting.Services.ITrackingHandler handler) { } } } namespace System.Runtime.Serialization { [System.CLSCompliantAttribute(false)] [System.SerializableAttribute] public abstract partial class Formatter : System.Runtime.Serialization.IFormatter { protected System.Runtime.Serialization.ObjectIDGenerator m_idGenerator; protected System.Collections.Queue m_objectQueue; protected Formatter() { } public abstract System.Runtime.Serialization.SerializationBinder Binder { get; set; } public abstract System.Runtime.Serialization.StreamingContext Context { get; set; } public abstract System.Runtime.Serialization.ISurrogateSelector SurrogateSelector { get; set; } public abstract object Deserialize(System.IO.Stream serializationStream); protected virtual object GetNext(out long objID) { throw null; } protected virtual long Schedule(object obj) { throw null; } public abstract void Serialize(System.IO.Stream serializationStream, object graph); protected abstract void WriteArray(object obj, string name, System.Type memberType); protected abstract void WriteBoolean(bool val, string name); protected abstract void WriteByte(byte val, string name); protected abstract void WriteChar(char val, string name); protected abstract void WriteDateTime(System.DateTime val, string name); protected abstract void WriteDecimal(decimal val, string name); protected abstract void WriteDouble(double val, string name); protected abstract void WriteInt16(short val, string name); protected abstract void WriteInt32(int val, string name); protected abstract void WriteInt64(long val, string name); protected virtual void WriteMember(string memberName, object data) { } protected abstract void WriteObjectRef(object obj, string name, System.Type memberType); [System.CLSCompliantAttribute(false)] protected abstract void WriteSByte(sbyte val, string name); protected abstract void WriteSingle(float val, string name); protected abstract void WriteTimeSpan(System.TimeSpan val, string name); [System.CLSCompliantAttribute(false)] protected abstract void WriteUInt16(ushort val, string name); [System.CLSCompliantAttribute(false)] protected abstract void WriteUInt32(uint val, string name); [System.CLSCompliantAttribute(false)] protected abstract void WriteUInt64(ulong val, string name); protected abstract void WriteValueType(object obj, string name, System.Type memberType); } public partial class FormatterConverter : System.Runtime.Serialization.IFormatterConverter { public FormatterConverter() { } public object Convert(object value, System.Type type) { throw null; } public object Convert(object value, System.TypeCode typeCode) { throw null; } public bool ToBoolean(object value) { throw null; } public byte ToByte(object value) { throw null; } public char ToChar(object value) { throw null; } public System.DateTime ToDateTime(object value) { throw null; } public decimal ToDecimal(object value) { throw null; } public double ToDouble(object value) { throw null; } public short ToInt16(object value) { throw null; } public int ToInt32(object value) { throw null; } public long ToInt64(object value) { throw null; } [System.CLSCompliantAttribute(false)] public sbyte ToSByte(object value) { throw null; } public float ToSingle(object value) { throw null; } public string ToString(object value) { throw null; } [System.CLSCompliantAttribute(false)] public ushort ToUInt16(object value) { throw null; } [System.CLSCompliantAttribute(false)] public uint ToUInt32(object value) { throw null; } [System.CLSCompliantAttribute(false)] public ulong ToUInt64(object value) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class FormatterServices { public static void CheckTypeSecurity(System.Type t, System.Runtime.Serialization.Formatters.TypeFilterLevel securityLevel) { } [System.Security.SecurityCriticalAttribute] public static object[] GetObjectData(object obj, System.Reflection.MemberInfo[] members) { throw null; } [System.Security.SecurityCriticalAttribute] public static object GetSafeUninitializedObject(System.Type type) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Reflection.MemberInfo[] GetSerializableMembers(System.Type type) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Reflection.MemberInfo[] GetSerializableMembers(System.Type type, System.Runtime.Serialization.StreamingContext context) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public static System.Runtime.Serialization.ISerializationSurrogate GetSurrogateForCyclicalReference(System.Runtime.Serialization.ISerializationSurrogate innerSurrogate) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Type GetTypeFromAssembly(System.Reflection.Assembly assem, string name) { throw null; } [System.Security.SecurityCriticalAttribute] public static object GetUninitializedObject(System.Type type) { throw null; } [System.Security.SecurityCriticalAttribute] public static object PopulateObjectMembers(object obj, System.Reflection.MemberInfo[] members, object[] data) { throw null; } } public partial interface IDeserializationCallback { void OnDeserialization(object sender); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IFormatter { System.Runtime.Serialization.SerializationBinder Binder { get; set; } System.Runtime.Serialization.StreamingContext Context { get; set; } System.Runtime.Serialization.ISurrogateSelector SurrogateSelector { get; set; } object Deserialize(System.IO.Stream serializationStream); void Serialize(System.IO.Stream serializationStream, object graph); } [System.CLSCompliantAttribute(false)] public partial interface IFormatterConverter { object Convert(object value, System.Type type); object Convert(object value, System.TypeCode typeCode); bool ToBoolean(object value); byte ToByte(object value); char ToChar(object value); System.DateTime ToDateTime(object value); decimal ToDecimal(object value); double ToDouble(object value); short ToInt16(object value); int ToInt32(object value); long ToInt64(object value); sbyte ToSByte(object value); float ToSingle(object value); string ToString(object value); ushort ToUInt16(object value); uint ToUInt32(object value); ulong ToUInt64(object value); } public partial interface IObjectReference { object GetRealObject(System.Runtime.Serialization.StreamingContext context); } public partial interface ISafeSerializationData { void CompleteDeserialization(object deserialized); } public partial interface ISerializable { void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context); } public partial interface ISerializationSurrogate { void GetObjectData(object obj, System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context); object SetObjectData(object obj, System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context, System.Runtime.Serialization.ISurrogateSelector selector); } public partial interface ISurrogateSelector { void ChainSelector(System.Runtime.Serialization.ISurrogateSelector selector); System.Runtime.Serialization.ISurrogateSelector GetNextSelector(); System.Runtime.Serialization.ISerializationSurrogate GetSurrogate(System.Type type, System.Runtime.Serialization.StreamingContext context, out System.Runtime.Serialization.ISurrogateSelector selector); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ObjectIDGenerator { public ObjectIDGenerator() { } public virtual long GetId(object obj, out bool firstTime) { throw null; } public virtual long HasId(object obj, out bool firstTime) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ObjectManager { [System.Security.SecuritySafeCriticalAttribute] public ObjectManager(System.Runtime.Serialization.ISurrogateSelector selector, System.Runtime.Serialization.StreamingContext context) { } [System.Security.SecuritySafeCriticalAttribute] public virtual void DoFixups() { } public virtual object GetObject(long objectID) { throw null; } public virtual void RaiseDeserializationEvent() { } public void RaiseOnDeserializingEvent(object obj) { } public virtual void RecordArrayElementFixup(long arrayToBeFixed, int index, long objectRequired) { } public virtual void RecordArrayElementFixup(long arrayToBeFixed, int[] indices, long objectRequired) { } public virtual void RecordDelayedFixup(long objectToBeFixed, string memberName, long objectRequired) { } public virtual void RecordFixup(long objectToBeFixed, System.Reflection.MemberInfo member, long objectRequired) { } [System.Security.SecurityCriticalAttribute] public virtual void RegisterObject(object obj, long objectID) { } [System.Security.SecurityCriticalAttribute] public void RegisterObject(object obj, long objectID, System.Runtime.Serialization.SerializationInfo info) { } [System.Security.SecurityCriticalAttribute] public void RegisterObject(object obj, long objectID, System.Runtime.Serialization.SerializationInfo info, long idOfContainingObj, System.Reflection.MemberInfo member) { } [System.Security.SecurityCriticalAttribute] public void RegisterObject(object obj, long objectID, System.Runtime.Serialization.SerializationInfo info, long idOfContainingObj, System.Reflection.MemberInfo member, int[] arrayIndex) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class OnDeserializedAttribute : System.Attribute { public OnDeserializedAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class OnDeserializingAttribute : System.Attribute { public OnDeserializingAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class OnSerializedAttribute : System.Attribute { public OnSerializedAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class OnSerializingAttribute : System.Attribute { public OnSerializingAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Field, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class OptionalFieldAttribute : System.Attribute { public OptionalFieldAttribute() { } public int VersionAdded { get { throw null; } set { } } } public sealed partial class SafeSerializationEventArgs : System.EventArgs { internal SafeSerializationEventArgs() { } public System.Runtime.Serialization.StreamingContext StreamingContext { get { throw null; } } public void AddSerializedState(System.Runtime.Serialization.ISafeSerializationData serializedState) { } } [System.SerializableAttribute] public abstract partial class SerializationBinder { protected SerializationBinder() { } public virtual void BindToName(System.Type serializedType, out string assemblyName, out string typeName) { throw null; } public abstract System.Type BindToType(string assemblyName, string typeName); } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SerializationEntry { private readonly object _dummy; public string Name { get { throw null; } } public System.Type ObjectType { get { throw null; } } public object Value { get { throw null; } } } public delegate void SerializationEventHandler(System.Runtime.Serialization.StreamingContext context); [System.SerializableAttribute] public partial class SerializationException : System.SystemException { public SerializationException() { } protected SerializationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SerializationException(string message) { } public SerializationException(string message, System.Exception innerException) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SerializationInfo { [System.CLSCompliantAttribute(false)] public SerializationInfo(System.Type type, System.Runtime.Serialization.IFormatterConverter converter) { } [System.CLSCompliantAttribute(false)] public SerializationInfo(System.Type type, System.Runtime.Serialization.IFormatterConverter converter, bool requireSameTokenInPartialTrust) { } public string AssemblyName { get { throw null; } [System.Security.SecuritySafeCriticalAttribute]set { } } public string FullTypeName { get { throw null; } set { } } public bool IsAssemblyNameSetExplicit { get { throw null; } } public bool IsFullTypeNameSetExplicit { get { throw null; } } public int MemberCount { get { throw null; } } public System.Type ObjectType { get { throw null; } } public void AddValue(string name, bool value) { } public void AddValue(string name, byte value) { } public void AddValue(string name, char value) { } public void AddValue(string name, System.DateTime value) { } public void AddValue(string name, decimal value) { } public void AddValue(string name, double value) { } public void AddValue(string name, short value) { } public void AddValue(string name, int value) { } public void AddValue(string name, long value) { } public void AddValue(string name, object value) { } public void AddValue(string name, object value, System.Type type) { } [System.CLSCompliantAttribute(false)] public void AddValue(string name, sbyte value) { } public void AddValue(string name, float value) { } [System.CLSCompliantAttribute(false)] public void AddValue(string name, ushort value) { } [System.CLSCompliantAttribute(false)] public void AddValue(string name, uint value) { } [System.CLSCompliantAttribute(false)] public void AddValue(string name, ulong value) { } public bool GetBoolean(string name) { throw null; } public byte GetByte(string name) { throw null; } public char GetChar(string name) { throw null; } public System.DateTime GetDateTime(string name) { throw null; } public decimal GetDecimal(string name) { throw null; } public double GetDouble(string name) { throw null; } public System.Runtime.Serialization.SerializationInfoEnumerator GetEnumerator() { throw null; } public short GetInt16(string name) { throw null; } public int GetInt32(string name) { throw null; } public long GetInt64(string name) { throw null; } [System.CLSCompliantAttribute(false)] public sbyte GetSByte(string name) { throw null; } public float GetSingle(string name) { throw null; } public string GetString(string name) { throw null; } [System.CLSCompliantAttribute(false)] public ushort GetUInt16(string name) { throw null; } [System.CLSCompliantAttribute(false)] public uint GetUInt32(string name) { throw null; } [System.CLSCompliantAttribute(false)] public ulong GetUInt64(string name) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public object GetValue(string name, System.Type type) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public void SetType(System.Type type) { } } public sealed partial class SerializationInfoEnumerator : System.Collections.IEnumerator { internal SerializationInfoEnumerator() { } public System.Runtime.Serialization.SerializationEntry Current { get { throw null; } } public string Name { get { throw null; } } public System.Type ObjectType { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public object Value { get { throw null; } } public bool MoveNext() { throw null; } public void Reset() { } } public sealed partial class SerializationObjectManager { public SerializationObjectManager(System.Runtime.Serialization.StreamingContext context) { } public void RaiseOnSerializedEvent() { } public void RegisterObject(object obj) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct StreamingContext { private readonly object _dummy; private readonly int _dummyPrimitive; public StreamingContext(System.Runtime.Serialization.StreamingContextStates state) { throw null; } public StreamingContext(System.Runtime.Serialization.StreamingContextStates state, object additional) { throw null; } public object Context { get { throw null; } } public System.Runtime.Serialization.StreamingContextStates State { get { throw null; } } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum StreamingContextStates { All = 255, Clone = 64, CrossAppDomain = 128, CrossMachine = 2, CrossProcess = 1, File = 4, Other = 32, Persistence = 8, Remoting = 16, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SurrogateSelector : System.Runtime.Serialization.ISurrogateSelector { public SurrogateSelector() { } public virtual void AddSurrogate(System.Type type, System.Runtime.Serialization.StreamingContext context, System.Runtime.Serialization.ISerializationSurrogate surrogate) { } [System.Security.SecurityCriticalAttribute] public virtual void ChainSelector(System.Runtime.Serialization.ISurrogateSelector selector) { } [System.Security.SecurityCriticalAttribute] public virtual System.Runtime.Serialization.ISurrogateSelector GetNextSelector() { throw null; } [System.Security.SecurityCriticalAttribute] public virtual System.Runtime.Serialization.ISerializationSurrogate GetSurrogate(System.Type type, System.Runtime.Serialization.StreamingContext context, out System.Runtime.Serialization.ISurrogateSelector selector) { throw null; } public virtual void RemoveSurrogate(System.Type type, System.Runtime.Serialization.StreamingContext context) { } } } namespace System.Runtime.Serialization.Formatters { public enum FormatterAssemblyStyle { Full = 1, Simple = 0, } public enum FormatterTypeStyle { TypesAlways = 1, TypesWhenNeeded = 0, XsdString = 2, } public partial interface IFieldInfo { string[] FieldNames { get; set; } System.Type[] FieldTypes { get; set; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecurityCriticalAttribute] public sealed partial class InternalRM { public InternalRM() { } [System.Diagnostics.ConditionalAttribute("_LOGGING")] public static void InfoSoap(params object[] messages) { } public static bool SoapCheckEnabled() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecurityCriticalAttribute] public sealed partial class InternalST { internal InternalST() { } [System.Diagnostics.ConditionalAttribute("_LOGGING")] public static void InfoSoap(params object[] messages) { } public static System.Reflection.Assembly LoadAssemblyFromString(string assemblyString) { throw null; } public static void SerializationSetValue(System.Reflection.FieldInfo fi, object target, object value) { } [System.Diagnostics.ConditionalAttribute("SER_LOGGING")] public static void Soap(params object[] messages) { } [System.Diagnostics.ConditionalAttribute("_DEBUG")] public static void SoapAssert(bool condition, string message) { } public static bool SoapCheckEnabled() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ISoapMessage { System.Runtime.Remoting.Messaging.Header[] Headers { get; set; } string MethodName { get; set; } string[] ParamNames { get; set; } System.Type[] ParamTypes { get; set; } object[] ParamValues { get; set; } string XmlNameSpace { get; set; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.Remoting.Metadata.SoapTypeAttribute(Embedded=true)] [System.SerializableAttribute] public sealed partial class ServerFault { public ServerFault(string exceptionType, string message, string stackTrace) { } public string ExceptionMessage { get { throw null; } set { } } public string ExceptionType { get { throw null; } set { } } public string StackTrace { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.Remoting.Metadata.SoapTypeAttribute(Embedded=true)] [System.SerializableAttribute] public sealed partial class SoapFault : System.Runtime.Serialization.ISerializable { public SoapFault() { } public SoapFault(string faultCode, string faultString, string faultActor, System.Runtime.Serialization.Formatters.ServerFault serverFault) { } public object Detail { get { throw null; } set { } } public string FaultActor { get { throw null; } set { } } public string FaultCode { get { throw null; } set { } } public string FaultString { get { throw null; } set { } } [System.Security.SecurityCriticalAttribute] public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class SoapMessage : System.Runtime.Serialization.Formatters.ISoapMessage { public SoapMessage() { } public System.Runtime.Remoting.Messaging.Header[] Headers { get { throw null; } set { } } public string MethodName { get { throw null; } set { } } public string[] ParamNames { get { throw null; } set { } } public System.Type[] ParamTypes { get { throw null; } set { } } public object[] ParamValues { get { throw null; } set { } } public string XmlNameSpace { get { throw null; } set { } } } public enum TypeFilterLevel { Full = 3, Low = 2, } } namespace System.Runtime.Serialization.Formatters.Binary { [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class BinaryFormatter : System.Runtime.Remoting.Messaging.IRemotingFormatter, System.Runtime.Serialization.IFormatter { public BinaryFormatter() { } public BinaryFormatter(System.Runtime.Serialization.ISurrogateSelector selector, System.Runtime.Serialization.StreamingContext context) { } public System.Runtime.Serialization.Formatters.FormatterAssemblyStyle AssemblyFormat { get { throw null; } set { } } public System.Runtime.Serialization.SerializationBinder Binder { get { throw null; } set { } } public System.Runtime.Serialization.StreamingContext Context { get { throw null; } set { } } public System.Runtime.Serialization.Formatters.TypeFilterLevel FilterLevel { get { throw null; } set { } } public System.Runtime.Serialization.ISurrogateSelector SurrogateSelector { get { throw null; } set { } } public System.Runtime.Serialization.Formatters.FormatterTypeStyle TypeFormat { get { throw null; } set { } } public object Deserialize(System.IO.Stream serializationStream) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public object Deserialize(System.IO.Stream serializationStream, System.Runtime.Remoting.Messaging.HeaderHandler handler) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public object DeserializeMethodResponse(System.IO.Stream serializationStream, System.Runtime.Remoting.Messaging.HeaderHandler handler, System.Runtime.Remoting.Messaging.IMethodCallMessage methodCallMessage) { throw null; } public void Serialize(System.IO.Stream serializationStream, object graph) { } [System.Security.SecuritySafeCriticalAttribute] public void Serialize(System.IO.Stream serializationStream, object graph, System.Runtime.Remoting.Messaging.Header[] headers) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public object UnsafeDeserialize(System.IO.Stream serializationStream, System.Runtime.Remoting.Messaging.HeaderHandler handler) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public object UnsafeDeserializeMethodResponse(System.IO.Stream serializationStream, System.Runtime.Remoting.Messaging.HeaderHandler handler, System.Runtime.Remoting.Messaging.IMethodCallMessage methodCallMessage) { throw null; } } } namespace System.Runtime.Versioning { public static partial class CompatibilitySwitch { public static string GetValue(string compatibilitySwitchName) { throw null; } public static bool IsEnabled(string compatibilitySwitchName) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Event | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Module | System.AttributeTargets.Property | System.AttributeTargets.Struct, AllowMultiple=false, Inherited=false)] public sealed partial class ComponentGuaranteesAttribute : System.Attribute { public ComponentGuaranteesAttribute(System.Runtime.Versioning.ComponentGuaranteesOptions guarantees) { } public System.Runtime.Versioning.ComponentGuaranteesOptions Guarantees { get { throw null; } } } [System.FlagsAttribute] public enum ComponentGuaranteesOptions { Exchange = 1, None = 0, SideBySide = 4, Stable = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Property, Inherited=false)] [System.Diagnostics.ConditionalAttribute("RESOURCE_ANNOTATION_WORK")] public sealed partial class ResourceConsumptionAttribute : System.Attribute { public ResourceConsumptionAttribute(System.Runtime.Versioning.ResourceScope resourceScope) { } public ResourceConsumptionAttribute(System.Runtime.Versioning.ResourceScope resourceScope, System.Runtime.Versioning.ResourceScope consumptionScope) { } public System.Runtime.Versioning.ResourceScope ConsumptionScope { get { throw null; } } public System.Runtime.Versioning.ResourceScope ResourceScope { get { throw null; } } } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor | System.AttributeTargets.Field | System.AttributeTargets.Method | System.AttributeTargets.Property, Inherited=false)] [System.Diagnostics.ConditionalAttribute("RESOURCE_ANNOTATION_WORK")] public sealed partial class ResourceExposureAttribute : System.Attribute { public ResourceExposureAttribute(System.Runtime.Versioning.ResourceScope exposureLevel) { } public System.Runtime.Versioning.ResourceScope ResourceExposureLevel { get { throw null; } } } [System.FlagsAttribute] public enum ResourceScope { AppDomain = 4, Assembly = 32, Library = 8, Machine = 1, None = 0, Private = 16, Process = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] public sealed partial class TargetFrameworkAttribute : System.Attribute { public TargetFrameworkAttribute(string frameworkName) { } public string FrameworkDisplayName { get { throw null; } set { } } public string FrameworkName { get { throw null; } } } public static partial class VersioningHelper { public static string MakeVersionSafeName(string name, System.Runtime.Versioning.ResourceScope from, System.Runtime.Versioning.ResourceScope to) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static string MakeVersionSafeName(string name, System.Runtime.Versioning.ResourceScope from, System.Runtime.Versioning.ResourceScope to, System.Type type) { throw null; } } } namespace System.Security { [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class AllowPartiallyTrustedCallersAttribute : System.Attribute { public AllowPartiallyTrustedCallersAttribute() { } public System.Security.PartialTrustVisibilityLevel PartialTrustVisibilityLevel { get { throw null; } set { } } } [System.MonoTODOAttribute("CAS support is experimental (and unsupported).")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, ControlEvidence=true, ControlPolicy=true)] [System.SerializableAttribute] public abstract partial class CodeAccessPermission : System.Security.IPermission, System.Security.ISecurityEncodable, System.Security.IStackWalk { protected CodeAccessPermission() { } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public void Assert() { } public abstract System.Security.IPermission Copy(); public void Demand() { } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public void Deny() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool Equals(object obj) { throw null; } public abstract void FromXml(System.Security.SecurityElement elem); [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public abstract System.Security.IPermission Intersect(System.Security.IPermission target); public abstract bool IsSubsetOf(System.Security.IPermission target); [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public void PermitOnly() { } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public static void RevertAll() { } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public static void RevertAssert() { } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public static void RevertDeny() { } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public static void RevertPermitOnly() { } public override string ToString() { throw null; } public abstract System.Security.SecurityElement ToXml(); public virtual System.Security.IPermission Union(System.Security.IPermission other) { throw null; } } [System.MonoTODOAttribute("Not supported in the runtime")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class HostProtectionException : System.SystemException { public HostProtectionException() { } protected HostProtectionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public HostProtectionException(string message) { } public HostProtectionException(string message, System.Exception e) { } public HostProtectionException(string message, System.Security.Permissions.HostProtectionResource protectedResources, System.Security.Permissions.HostProtectionResource demandedResources) { } public System.Security.Permissions.HostProtectionResource DemandedResources { get { throw null; } } public System.Security.Permissions.HostProtectionResource ProtectedResources { get { throw null; } } [System.MonoTODOAttribute] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.MonoTODOAttribute] public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class HostSecurityManager { public HostSecurityManager() { } public virtual System.Security.Policy.PolicyLevel DomainPolicy { get { throw null; } } public virtual System.Security.HostSecurityManagerOptions Flags { get { throw null; } } public virtual System.Security.Policy.ApplicationTrust DetermineApplicationTrust(System.Security.Policy.Evidence applicationEvidence, System.Security.Policy.Evidence activatorEvidence, System.Security.Policy.TrustManagerContext context) { throw null; } public virtual System.Security.Policy.Evidence ProvideAppDomainEvidence(System.Security.Policy.Evidence inputEvidence) { throw null; } public virtual System.Security.Policy.Evidence ProvideAssemblyEvidence(System.Reflection.Assembly loadedAssembly, System.Security.Policy.Evidence inputEvidence) { throw null; } public virtual System.Security.PermissionSet ResolvePolicy(System.Security.Policy.Evidence evidence) { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum HostSecurityManagerOptions { AllFlags = 31, HostAppDomainEvidence = 1, HostAssemblyEvidence = 4, HostDetermineApplicationTrust = 8, HostPolicyLevel = 2, HostResolvePolicy = 16, None = 0, } public partial interface IEvidenceFactory { System.Security.Policy.Evidence Evidence { get; } } public partial interface IPermission : System.Security.ISecurityEncodable { System.Security.IPermission Copy(); void Demand(); System.Security.IPermission Intersect(System.Security.IPermission target); bool IsSubsetOf(System.Security.IPermission target); System.Security.IPermission Union(System.Security.IPermission target); } public partial interface ISecurityEncodable { void FromXml(System.Security.SecurityElement e); System.Security.SecurityElement ToXml(); } public partial interface ISecurityPolicyEncodable { void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level); System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level); } public partial interface IStackWalk { void Assert(); void Demand(); void Deny(); void PermitOnly(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class NamedPermissionSet : System.Security.PermissionSet { public NamedPermissionSet(System.Security.NamedPermissionSet permSet) : base (default(System.Security.Permissions.PermissionState)) { } public NamedPermissionSet(string name) : base (default(System.Security.Permissions.PermissionState)) { } public NamedPermissionSet(string name, System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { } public NamedPermissionSet(string name, System.Security.PermissionSet permSet) : base (default(System.Security.Permissions.PermissionState)) { } public string Description { get { throw null; } set { } } public string Name { get { throw null; } set { } } public override System.Security.PermissionSet Copy() { throw null; } public System.Security.NamedPermissionSet Copy(string name) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool Equals(object obj) { throw null; } public override void FromXml(System.Security.SecurityElement et) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } } public enum PartialTrustVisibilityLevel { NotVisibleByDefault = 1, VisibleToAllHosts = 0, } [System.MonoTODOAttribute("CAS support is experimental (and unsupported).")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.Permissions.StrongNameIdentityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, PublicKey="002400000480000094000000060200000024000052534131000400000100010007D1FA57C4AED9F0A32E84AA0FAEFD0DE9E8FD6AEC8F87FB03766C834C99921EB23BE79AD9D5DCC1DD9AD236132102900B723CF980957FC4E177108FC607774F29E8320E92EA05ECE4E821C0A5EFE8F1645C4C0C93C1AB99285D622CAA652C1DFAD63D745D6F2DE5F17E5EAF0FC4963D261C8A12436518206DC093344D5AD293")] [System.SerializableAttribute] public partial class PermissionSet : System.Collections.ICollection, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Security.ISecurityEncodable, System.Security.IStackWalk { public PermissionSet(System.Security.Permissions.PermissionState state) { } public PermissionSet(System.Security.PermissionSet permSet) { } public virtual int Count { get { throw null; } } public virtual bool IsReadOnly { get { throw null; } } public virtual bool IsSynchronized { get { throw null; } } public virtual object SyncRoot { get { throw null; } } public System.Security.IPermission AddPermission(System.Security.IPermission perm) { throw null; } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, Assertion=true)] public void Assert() { } public bool ContainsNonCodeAccessPermissions() { throw null; } public static byte[] ConvertPermissionSet(string inFormat, byte[] inData, string outFormat) { throw null; } public virtual System.Security.PermissionSet Copy() { throw null; } public virtual void CopyTo(System.Array array, int index) { } public void Demand() { } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public void Deny() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool Equals(object obj) { throw null; } public virtual void FromXml(System.Security.SecurityElement et) { } public System.Collections.IEnumerator GetEnumerator() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public System.Security.IPermission GetPermission(System.Type permClass) { throw null; } public System.Security.PermissionSet Intersect(System.Security.PermissionSet other) { throw null; } public bool IsEmpty() { throw null; } public bool IsSubsetOf(System.Security.PermissionSet target) { throw null; } public bool IsUnrestricted() { throw null; } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). Imperative mode is not implemented.")] public void PermitOnly() { } public System.Security.IPermission RemovePermission(System.Type permClass) { throw null; } public static void RevertAssert() { } public System.Security.IPermission SetPermission(System.Security.IPermission perm) { throw null; } [System.MonoTODOAttribute("may not be required")] void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } public override string ToString() { throw null; } public virtual System.Security.SecurityElement ToXml() { throw null; } public System.Security.PermissionSet Union(System.Security.PermissionSet other) { throw null; } } public enum PolicyLevelType { AppDomain = 3, Enterprise = 2, Machine = 1, User = 0, } [System.MonoTODOAttribute("work in progress - encryption is missing")] public sealed partial class SecureString : System.IDisposable { public SecureString() { } [System.CLSCompliantAttribute(false)] public unsafe SecureString(char* value, int length) { } public int Length { get { throw null; } } [System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] public void AppendChar(char c) { } public void Clear() { } public System.Security.SecureString Copy() { throw null; } public void Dispose() { } [System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] public void InsertAt(int index, char c) { } public bool IsReadOnly() { throw null; } public void MakeReadOnly() { } [System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] public void RemoveAt(int index) { } [System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] public void SetAt(int index, char c) { } } public sealed partial class SecurityContext : System.IDisposable { internal SecurityContext() { } public static System.Security.SecurityContext Capture() { throw null; } public System.Security.SecurityContext CreateCopy() { throw null; } public void Dispose() { } public static bool IsFlowSuppressed() { throw null; } public static bool IsWindowsIdentityFlowSuppressed() { throw null; } public static void RestoreFlow() { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, ControlPrincipal=true)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Infrastructure=true)] public static void Run(System.Security.SecurityContext securityContext, System.Threading.ContextCallback callback, object state) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Infrastructure=true)] public static System.Threading.AsyncFlowControl SuppressFlow() { throw null; } public static System.Threading.AsyncFlowControl SuppressFlowWindowsIdentity() { throw null; } } public enum SecurityContextSource { CurrentAppDomain = 0, CurrentAssembly = 1, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Field | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=false, Inherited=false)] public sealed partial class SecurityCriticalAttribute : System.Attribute { public SecurityCriticalAttribute() { } public SecurityCriticalAttribute(System.Security.SecurityCriticalScope scope) { } [System.ObsoleteAttribute("SecurityCriticalScope is only used for .NET 2.0 transparency compatibility.")] public System.Security.SecurityCriticalScope Scope { get { throw null; } } } [System.ObsoleteAttribute("SecurityCriticalScope is only used for .NET 2.0 transparency compatibility.")] public enum SecurityCriticalScope { Everything = 1, Explicit = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SecurityElement { public SecurityElement(string tag) { } public SecurityElement(string tag, string text) { } public System.Collections.Hashtable Attributes { get { throw null; } set { } } public System.Collections.ArrayList Children { get { throw null; } set { } } public string Tag { get { throw null; } set { } } public string Text { get { throw null; } set { } } public void AddAttribute(string name, string value) { } public void AddChild(System.Security.SecurityElement child) { } public string Attribute(string name) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.SecurityElement Copy() { throw null; } public bool Equal(System.Security.SecurityElement other) { throw null; } public static string Escape(string str) { throw null; } public static System.Security.SecurityElement FromString(string xml) { throw null; } public static bool IsValidAttributeName(string name) { throw null; } public static bool IsValidAttributeValue(string value) { throw null; } public static bool IsValidTag(string tag) { throw null; } public static bool IsValidText(string text) { throw null; } public System.Security.SecurityElement SearchForChildByTag(string tag) { throw null; } public string SearchForTextOfTag(string tag) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class SecurityException : System.SystemException { public SecurityException() { } protected SecurityException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SecurityException(string message) { } public SecurityException(string message, System.Exception inner) { } public SecurityException(string message, object deny, object permitOnly, System.Reflection.MethodInfo method, object demanded, System.Security.IPermission permThatFailed) { } public SecurityException(string message, System.Reflection.AssemblyName assemblyName, System.Security.PermissionSet grant, System.Security.PermissionSet refused, System.Reflection.MethodInfo method, System.Security.Permissions.SecurityAction action, object demanded, System.Security.IPermission permThatFailed, System.Security.Policy.Evidence evidence) { } public SecurityException(string message, System.Type type) { } public SecurityException(string message, System.Type type, string state) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Permissions.SecurityAction Action { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public object Demanded { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public object DenySetInstance { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Reflection.AssemblyName FailedAssemblyInfo { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } public System.Security.IPermission FirstPermissionThatFailed { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } public string GrantedSet { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Reflection.MethodInfo Method { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } public string PermissionState { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } public System.Type PermissionType { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public object PermitOnlySetInstance { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } public string RefusedSet { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } public string Url { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)]get { throw null; } set { } } public System.Security.SecurityZone Zone { get { throw null; } set { } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class SecurityManager { [System.ObsoleteAttribute] public static bool CheckExecutionRights { get { throw null; } set { } } [System.ObsoleteAttribute("The security manager cannot be turned off on MS runtime")] public static bool SecurityEnabled { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)][System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]set { } } public static bool CurrentThreadRequiresSecurityContextCapture() { throw null; } public static System.Security.PermissionSet GetStandardSandbox(System.Security.Policy.Evidence evidence) { throw null; } [System.MonoTODOAttribute("CAS support is experimental (and unsupported). This method only works in FullTrust.")] [System.Security.Permissions.StrongNameIdentityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, PublicKey="0x00000000000000000400000000000000")] public static void GetZoneAndOrigin(out System.Collections.ArrayList zone, out System.Collections.ArrayList origin) { throw null; } [System.ObsoleteAttribute] public static bool IsGranted(System.Security.IPermission perm) { throw null; } [System.ObsoleteAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)] public static System.Security.Policy.PolicyLevel LoadPolicyLevelFromFile(string path, System.Security.PolicyLevelType type) { throw null; } [System.ObsoleteAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)] public static System.Security.Policy.PolicyLevel LoadPolicyLevelFromString(string str, System.Security.PolicyLevelType type) { throw null; } [System.ObsoleteAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)] public static System.Collections.IEnumerator PolicyHierarchy() { throw null; } [System.ObsoleteAttribute] public static System.Security.PermissionSet ResolvePolicy(System.Security.Policy.Evidence evidence) { throw null; } [System.ObsoleteAttribute] public static System.Security.PermissionSet ResolvePolicy(System.Security.Policy.Evidence evidence, System.Security.PermissionSet reqdPset, System.Security.PermissionSet optPset, System.Security.PermissionSet denyPset, out System.Security.PermissionSet denied) { throw null; } [System.MonoTODOAttribute("(2.0) more tests are needed")] [System.ObsoleteAttribute] public static System.Security.PermissionSet ResolvePolicy(System.Security.Policy.Evidence[] evidences) { throw null; } [System.ObsoleteAttribute] public static System.Collections.IEnumerator ResolvePolicyGroups(System.Security.Policy.Evidence evidence) { throw null; } [System.ObsoleteAttribute] public static System.Security.PermissionSet ResolveSystemPolicy(System.Security.Policy.Evidence evidence) { throw null; } [System.ObsoleteAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)] public static void SavePolicy() { } [System.ObsoleteAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)] public static void SavePolicyLevel(System.Security.Policy.PolicyLevel level) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false)] public sealed partial class SecurityRulesAttribute : System.Attribute { public SecurityRulesAttribute(System.Security.SecurityRuleSet ruleSet) { } public System.Security.SecurityRuleSet RuleSet { get { throw null; } } public bool SkipVerificationInFullTrust { get { throw null; } set { } } } public enum SecurityRuleSet : byte { Level1 = (byte)1, Level2 = (byte)2, None = (byte)0, } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Field | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=false, Inherited=false)] public sealed partial class SecuritySafeCriticalAttribute : System.Attribute { public SecuritySafeCriticalAttribute() { } } public abstract partial class SecurityState { protected SecurityState() { } public abstract void EnsureState(); public bool IsStateAvailable() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] public sealed partial class SecurityTransparentAttribute : System.Attribute { public SecurityTransparentAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Delegate | System.AttributeTargets.Enum | System.AttributeTargets.Field | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=false, Inherited=false)] [System.ObsoleteAttribute("SecurityTreatAsSafe is only used for .NET 2.0 transparency compatibility. Please use the SecuritySafeCriticalAttribute instead.")] public sealed partial class SecurityTreatAsSafeAttribute : System.Attribute { public SecurityTreatAsSafeAttribute() { } } public enum SecurityZone { Internet = 3, Intranet = 1, MyComputer = 0, NoZone = -1, Trusted = 2, Untrusted = 4, } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Delegate | System.AttributeTargets.Interface | System.AttributeTargets.Method, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SuppressUnmanagedCodeSecurityAttribute : System.Attribute { public SuppressUnmanagedCodeSecurityAttribute() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Module, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class UnverifiableCodeAttribute : System.Attribute { public UnverifiableCodeAttribute() { } } [System.SerializableAttribute] public partial class VerificationException : System.SystemException { public VerificationException() { } protected VerificationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public VerificationException(string message) { } public VerificationException(string message, System.Exception innerException) { } } [System.SerializableAttribute] public sealed partial class XmlSyntaxException : System.SystemException { public XmlSyntaxException() { } public XmlSyntaxException(int lineNumber) { } public XmlSyntaxException(int lineNumber, string message) { } public XmlSyntaxException(string message) { } public XmlSyntaxException(string message, System.Exception inner) { } } } namespace System.Security.AccessControl { [System.FlagsAttribute] public enum AccessControlActions { Change = 2, None = 0, View = 1, } public enum AccessControlModification { Add = 0, Remove = 3, RemoveAll = 4, RemoveSpecific = 5, Reset = 2, Set = 1, } [System.FlagsAttribute] public enum AccessControlSections { Access = 2, All = 15, Audit = 1, Group = 8, None = 0, Owner = 4, } public enum AccessControlType { Allow = 0, Deny = 1, } public abstract partial class AccessRule : System.Security.AccessControl.AuthorizationRule { protected AccessRule(System.Security.Principal.IdentityReference identity, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public System.Security.AccessControl.AccessControlType AccessControlType { get { throw null; } } } public partial class AccessRule : System.Security.AccessControl.AccessRule where T : struct { public AccessRule(System.Security.Principal.IdentityReference identity, T rights, 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)) { } public AccessRule(System.Security.Principal.IdentityReference identity, T rights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public AccessRule(string identity, T rights, 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)) { } public AccessRule(string identity, T rights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public T Rights { get { throw null; } } } public sealed partial class AceEnumerator : System.Collections.IEnumerator { internal AceEnumerator() { } public System.Security.AccessControl.GenericAce Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public bool MoveNext() { throw null; } public void Reset() { } } [System.FlagsAttribute] public enum AceFlags : byte { AuditFlags = (byte)192, ContainerInherit = (byte)2, FailedAccess = (byte)128, InheritanceFlags = (byte)15, Inherited = (byte)16, InheritOnly = (byte)8, None = (byte)0, NoPropagateInherit = (byte)4, ObjectInherit = (byte)1, SuccessfulAccess = (byte)64, } public enum AceQualifier { AccessAllowed = 0, AccessDenied = 1, SystemAlarm = 3, SystemAudit = 2, } public enum AceType : byte { AccessAllowed = (byte)0, AccessAllowedCallback = (byte)9, AccessAllowedCallbackObject = (byte)11, AccessAllowedCompound = (byte)4, AccessAllowedObject = (byte)5, AccessDenied = (byte)1, AccessDeniedCallback = (byte)10, AccessDeniedCallbackObject = (byte)12, AccessDeniedObject = (byte)6, MaxDefinedAceType = (byte)16, SystemAlarm = (byte)3, SystemAlarmCallback = (byte)14, SystemAlarmCallbackObject = (byte)16, SystemAlarmObject = (byte)8, SystemAudit = (byte)2, SystemAuditCallback = (byte)13, SystemAuditCallbackObject = (byte)15, SystemAuditObject = (byte)7, } [System.FlagsAttribute] public enum AuditFlags { Failure = 2, None = 0, Success = 1, } public abstract partial class AuditRule : System.Security.AccessControl.AuthorizationRule { protected AuditRule(System.Security.Principal.IdentityReference identity, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AuditFlags auditFlags) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags)) { } public System.Security.AccessControl.AuditFlags AuditFlags { get { throw null; } } } public partial class AuditRule : System.Security.AccessControl.AuditRule where T : struct { public AuditRule(System.Security.Principal.IdentityReference identity, T rights, 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)) { } public AuditRule(System.Security.Principal.IdentityReference identity, T rights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public AuditRule(string identity, T rights, 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)) { } public AuditRule(string identity, T rights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public T Rights { get { throw null; } } } public abstract partial class AuthorizationRule { protected internal AuthorizationRule(System.Security.Principal.IdentityReference identity, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { } protected internal int AccessMask { get { throw null; } } public System.Security.Principal.IdentityReference IdentityReference { get { throw null; } } public System.Security.AccessControl.InheritanceFlags InheritanceFlags { get { throw null; } } public bool IsInherited { get { throw null; } } public System.Security.AccessControl.PropagationFlags PropagationFlags { get { throw null; } } } public sealed partial class AuthorizationRuleCollection : System.Collections.ReadOnlyCollectionBase { public AuthorizationRuleCollection() { } public System.Security.AccessControl.AuthorizationRule this[int index] { get { throw null; } } public void AddRule(System.Security.AccessControl.AuthorizationRule rule) { } public void CopyTo(System.Security.AccessControl.AuthorizationRule[] rules, int index) { } } public sealed partial class CommonAce : System.Security.AccessControl.QualifiedAce { public CommonAce(System.Security.AccessControl.AceFlags flags, System.Security.AccessControl.AceQualifier qualifier, int accessMask, System.Security.Principal.SecurityIdentifier sid, bool isCallback, byte[] opaque) { } public override int BinaryLength { get { throw null; } } public override void GetBinaryForm(byte[] binaryForm, int offset) { } public static int MaxOpaqueLength(bool isCallback) { throw null; } } public abstract partial class CommonAcl : System.Security.AccessControl.GenericAcl { internal CommonAcl() { } public sealed override int BinaryLength { get { throw null; } } public sealed override int Count { get { throw null; } } public bool IsCanonical { get { throw null; } } public bool IsContainer { get { throw null; } } public bool IsDS { get { throw null; } } public sealed override System.Security.AccessControl.GenericAce this[int index] { get { throw null; } set { } } public sealed override byte Revision { get { throw null; } } public sealed override void GetBinaryForm(byte[] binaryForm, int offset) { } public void Purge(System.Security.Principal.SecurityIdentifier sid) { } public void RemoveInheritedAces() { } } public abstract partial class CommonObjectSecurity : System.Security.AccessControl.ObjectSecurity { protected CommonObjectSecurity(bool isContainer) { } protected void AddAccessRule(System.Security.AccessControl.AccessRule rule) { } protected void AddAuditRule(System.Security.AccessControl.AuditRule rule) { } public System.Security.AccessControl.AuthorizationRuleCollection GetAccessRules(bool includeExplicit, bool includeInherited, System.Type targetType) { throw null; } public System.Security.AccessControl.AuthorizationRuleCollection GetAuditRules(bool includeExplicit, bool includeInherited, System.Type targetType) { throw null; } protected override bool ModifyAccess(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AccessRule rule, out bool modified) { throw null; } protected override bool ModifyAudit(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AuditRule rule, out bool modified) { throw null; } protected bool RemoveAccessRule(System.Security.AccessControl.AccessRule rule) { throw null; } protected void RemoveAccessRuleAll(System.Security.AccessControl.AccessRule rule) { } protected void RemoveAccessRuleSpecific(System.Security.AccessControl.AccessRule rule) { } protected bool RemoveAuditRule(System.Security.AccessControl.AuditRule rule) { throw null; } protected void RemoveAuditRuleAll(System.Security.AccessControl.AuditRule rule) { } protected void RemoveAuditRuleSpecific(System.Security.AccessControl.AuditRule rule) { } protected void ResetAccessRule(System.Security.AccessControl.AccessRule rule) { } protected void SetAccessRule(System.Security.AccessControl.AccessRule rule) { } protected void SetAuditRule(System.Security.AccessControl.AuditRule rule) { } } public sealed partial class CommonSecurityDescriptor : System.Security.AccessControl.GenericSecurityDescriptor { public CommonSecurityDescriptor(bool isContainer, bool isDS, byte[] binaryForm, int offset) { } public CommonSecurityDescriptor(bool isContainer, bool isDS, System.Security.AccessControl.ControlFlags flags, System.Security.Principal.SecurityIdentifier owner, System.Security.Principal.SecurityIdentifier group, System.Security.AccessControl.SystemAcl systemAcl, System.Security.AccessControl.DiscretionaryAcl discretionaryAcl) { } public CommonSecurityDescriptor(bool isContainer, bool isDS, System.Security.AccessControl.RawSecurityDescriptor rawSecurityDescriptor) { } public CommonSecurityDescriptor(bool isContainer, bool isDS, string sddlForm) { } public override System.Security.AccessControl.ControlFlags ControlFlags { get { throw null; } } public System.Security.AccessControl.DiscretionaryAcl DiscretionaryAcl { get { throw null; } set { } } public override System.Security.Principal.SecurityIdentifier Group { get { throw null; } set { } } public bool IsContainer { get { throw null; } } public bool IsDiscretionaryAclCanonical { get { throw null; } } public bool IsDS { get { throw null; } } public bool IsSystemAclCanonical { get { throw null; } } public override System.Security.Principal.SecurityIdentifier Owner { get { throw null; } set { } } public System.Security.AccessControl.SystemAcl SystemAcl { get { throw null; } set { } } public void AddDiscretionaryAcl(byte revision, int trusted) { } public void AddSystemAcl(byte revision, int trusted) { } public void PurgeAccessControl(System.Security.Principal.SecurityIdentifier sid) { } public void PurgeAudit(System.Security.Principal.SecurityIdentifier sid) { } public void SetDiscretionaryAclProtection(bool isProtected, bool preserveInheritance) { } public void SetSystemAclProtection(bool isProtected, bool preserveInheritance) { } } public sealed partial class CompoundAce : System.Security.AccessControl.KnownAce { public CompoundAce(System.Security.AccessControl.AceFlags flags, int accessMask, System.Security.AccessControl.CompoundAceType compoundAceType, System.Security.Principal.SecurityIdentifier sid) { } [System.MonoTODOAttribute] public override int BinaryLength { get { throw null; } } public System.Security.AccessControl.CompoundAceType CompoundAceType { get { throw null; } set { } } [System.MonoTODOAttribute] public override void GetBinaryForm(byte[] binaryForm, int offset) { } } public enum CompoundAceType { Impersonation = 1, } [System.FlagsAttribute] public enum ControlFlags { DiscretionaryAclAutoInherited = 1024, DiscretionaryAclAutoInheritRequired = 256, DiscretionaryAclDefaulted = 8, DiscretionaryAclPresent = 4, DiscretionaryAclProtected = 4096, DiscretionaryAclUntrusted = 64, GroupDefaulted = 2, None = 0, OwnerDefaulted = 1, RMControlValid = 16384, SelfRelative = 32768, ServerSecurity = 128, SystemAclAutoInherited = 2048, SystemAclAutoInheritRequired = 512, SystemAclDefaulted = 32, SystemAclPresent = 16, SystemAclProtected = 8192, } public sealed partial class CryptoKeyAccessRule : System.Security.AccessControl.AccessRule { public CryptoKeyAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.CryptoKeyRights cryptoKeyRights, 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)) { } public CryptoKeyAccessRule(string identity, System.Security.AccessControl.CryptoKeyRights cryptoKeyRights, 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)) { } public System.Security.AccessControl.CryptoKeyRights CryptoKeyRights { get { throw null; } } } public sealed partial class CryptoKeyAuditRule : System.Security.AccessControl.AuditRule { public CryptoKeyAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.CryptoKeyRights cryptoKeyRights, 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)) { } public CryptoKeyAuditRule(string identity, System.Security.AccessControl.CryptoKeyRights cryptoKeyRights, 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)) { } public System.Security.AccessControl.CryptoKeyRights CryptoKeyRights { get { throw null; } } } [System.FlagsAttribute] public enum CryptoKeyRights { ChangePermissions = 262144, Delete = 65536, FullControl = 2032027, GenericAll = 268435456, GenericExecute = 536870912, GenericRead = -2147483648, GenericWrite = 1073741824, ReadAttributes = 128, ReadData = 1, ReadExtendedAttributes = 8, ReadPermissions = 131072, Synchronize = 1048576, TakeOwnership = 524288, WriteAttributes = 256, WriteData = 2, WriteExtendedAttributes = 16, } public sealed partial class CryptoKeySecurity : System.Security.AccessControl.NativeObjectSecurity { public CryptoKeySecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public CryptoKeySecurity(System.Security.AccessControl.CommonSecurityDescriptor securityDescriptor) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public override System.Type AccessRightType { get { throw null; } } public override System.Type AccessRuleType { get { throw null; } } public override System.Type AuditRuleType { get { throw null; } } public sealed 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; } public void AddAccessRule(System.Security.AccessControl.CryptoKeyAccessRule rule) { } public void AddAuditRule(System.Security.AccessControl.CryptoKeyAuditRule rule) { } public sealed 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; } public bool RemoveAccessRule(System.Security.AccessControl.CryptoKeyAccessRule rule) { throw null; } public void RemoveAccessRuleAll(System.Security.AccessControl.CryptoKeyAccessRule rule) { } public void RemoveAccessRuleSpecific(System.Security.AccessControl.CryptoKeyAccessRule rule) { } public bool RemoveAuditRule(System.Security.AccessControl.CryptoKeyAuditRule rule) { throw null; } public void RemoveAuditRuleAll(System.Security.AccessControl.CryptoKeyAuditRule rule) { } public void RemoveAuditRuleSpecific(System.Security.AccessControl.CryptoKeyAuditRule rule) { } public void ResetAccessRule(System.Security.AccessControl.CryptoKeyAccessRule rule) { } public void SetAccessRule(System.Security.AccessControl.CryptoKeyAccessRule rule) { } public void SetAuditRule(System.Security.AccessControl.CryptoKeyAuditRule rule) { } } public sealed partial class CustomAce : System.Security.AccessControl.GenericAce { [System.MonoTODOAttribute] public static readonly int MaxOpaqueLength; public CustomAce(System.Security.AccessControl.AceType type, System.Security.AccessControl.AceFlags flags, byte[] opaque) { } [System.MonoTODOAttribute] public override int BinaryLength { get { throw null; } } public int OpaqueLength { get { throw null; } } [System.MonoTODOAttribute] public override void GetBinaryForm(byte[] binaryForm, int offset) { } public byte[] GetOpaque() { throw null; } public void SetOpaque(byte[] opaque) { } } public abstract partial class DirectoryObjectSecurity : System.Security.AccessControl.ObjectSecurity { protected DirectoryObjectSecurity() { } protected DirectoryObjectSecurity(System.Security.AccessControl.CommonSecurityDescriptor securityDescriptor) { } public virtual 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, System.Guid objectType, System.Guid inheritedObjectType) { throw null; } protected void AddAccessRule(System.Security.AccessControl.ObjectAccessRule rule) { } protected void AddAuditRule(System.Security.AccessControl.ObjectAuditRule rule) { } public virtual 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, System.Guid objectType, System.Guid inheritedObjectType) { throw null; } public System.Security.AccessControl.AuthorizationRuleCollection GetAccessRules(bool includeExplicit, bool includeInherited, System.Type targetType) { throw null; } public System.Security.AccessControl.AuthorizationRuleCollection GetAuditRules(bool includeExplicit, bool includeInherited, System.Type targetType) { throw null; } protected override bool ModifyAccess(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AccessRule rule, out bool modified) { throw null; } protected override bool ModifyAudit(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AuditRule rule, out bool modified) { throw null; } protected bool RemoveAccessRule(System.Security.AccessControl.ObjectAccessRule rule) { throw null; } protected void RemoveAccessRuleAll(System.Security.AccessControl.ObjectAccessRule rule) { } protected void RemoveAccessRuleSpecific(System.Security.AccessControl.ObjectAccessRule rule) { } protected bool RemoveAuditRule(System.Security.AccessControl.ObjectAuditRule rule) { throw null; } protected void RemoveAuditRuleAll(System.Security.AccessControl.ObjectAuditRule rule) { } protected void RemoveAuditRuleSpecific(System.Security.AccessControl.ObjectAuditRule rule) { } protected void ResetAccessRule(System.Security.AccessControl.ObjectAccessRule rule) { } protected void SetAccessRule(System.Security.AccessControl.ObjectAccessRule rule) { } protected void SetAuditRule(System.Security.AccessControl.ObjectAuditRule rule) { } } public sealed partial class DirectorySecurity : System.Security.AccessControl.FileSystemSecurity { public DirectorySecurity() { } public DirectorySecurity(string name, System.Security.AccessControl.AccessControlSections includeSections) { } } public sealed partial class DiscretionaryAcl : System.Security.AccessControl.CommonAcl { public DiscretionaryAcl(bool isContainer, bool isDS, byte revision, int capacity) { } public DiscretionaryAcl(bool isContainer, bool isDS, int capacity) { } public DiscretionaryAcl(bool isContainer, bool isDS, System.Security.AccessControl.RawAcl rawAcl) { } public void AddAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { } public void AddAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { } public void AddAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAccessRule rule) { } [System.MonoTODOAttribute] public bool RemoveAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { throw null; } [System.MonoTODOAttribute] public bool RemoveAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { throw null; } public bool RemoveAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAccessRule rule) { throw null; } public void RemoveAccessSpecific(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { } public void RemoveAccessSpecific(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { } public void RemoveAccessSpecific(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAccessRule rule) { } public void SetAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { } public void SetAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { } public void SetAccess(System.Security.AccessControl.AccessControlType accessType, System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAccessRule rule) { } } public sealed partial class EventWaitHandleAccessRule : System.Security.AccessControl.AccessRule { public EventWaitHandleAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.EventWaitHandleRights 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)) { } public EventWaitHandleAccessRule(string identity, System.Security.AccessControl.EventWaitHandleRights 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)) { } public System.Security.AccessControl.EventWaitHandleRights EventWaitHandleRights { get { throw null; } } } public sealed partial class EventWaitHandleAuditRule : System.Security.AccessControl.AuditRule { public EventWaitHandleAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.EventWaitHandleRights 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)) { } public System.Security.AccessControl.EventWaitHandleRights EventWaitHandleRights { get { throw null; } } } [System.FlagsAttribute] public enum EventWaitHandleRights { ChangePermissions = 262144, Delete = 65536, FullControl = 2031619, Modify = 2, ReadPermissions = 131072, Synchronize = 1048576, TakeOwnership = 524288, } public sealed partial class EventWaitHandleSecurity : System.Security.AccessControl.NativeObjectSecurity { public EventWaitHandleSecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public override System.Type AccessRightType { get { throw null; } } public override System.Type AccessRuleType { get { throw null; } } public override System.Type AuditRuleType { get { throw null; } } 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; } public void AddAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule rule) { } public void AddAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule rule) { } 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; } public bool RemoveAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule rule) { throw null; } public void RemoveAccessRuleAll(System.Security.AccessControl.EventWaitHandleAccessRule rule) { } public void RemoveAccessRuleSpecific(System.Security.AccessControl.EventWaitHandleAccessRule rule) { } public bool RemoveAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule rule) { throw null; } public void RemoveAuditRuleAll(System.Security.AccessControl.EventWaitHandleAuditRule rule) { } public void RemoveAuditRuleSpecific(System.Security.AccessControl.EventWaitHandleAuditRule rule) { } public void ResetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule rule) { } public void SetAccessRule(System.Security.AccessControl.EventWaitHandleAccessRule rule) { } public void SetAuditRule(System.Security.AccessControl.EventWaitHandleAuditRule rule) { } } public sealed partial class FileSecurity : System.Security.AccessControl.FileSystemSecurity { public FileSecurity() { } public FileSecurity(string fileName, System.Security.AccessControl.AccessControlSections includeSections) { } } public sealed partial class FileSystemAccessRule : System.Security.AccessControl.AccessRule { public FileSystemAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.FileSystemRights fileSystemRights, 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)) { } public FileSystemAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.FileSystemRights fileSystemRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public FileSystemAccessRule(string identity, System.Security.AccessControl.FileSystemRights fileSystemRights, 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)) { } public FileSystemAccessRule(string identity, System.Security.AccessControl.FileSystemRights fileSystemRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public System.Security.AccessControl.FileSystemRights FileSystemRights { get { throw null; } } } public sealed partial class FileSystemAuditRule : System.Security.AccessControl.AuditRule { public FileSystemAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.FileSystemRights fileSystemRights, 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)) { } public FileSystemAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.FileSystemRights fileSystemRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public FileSystemAuditRule(string identity, System.Security.AccessControl.FileSystemRights fileSystemRights, 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)) { } public FileSystemAuditRule(string identity, System.Security.AccessControl.FileSystemRights fileSystemRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public System.Security.AccessControl.FileSystemRights FileSystemRights { get { throw null; } } } [System.FlagsAttribute] public enum FileSystemRights { AppendData = 4, ChangePermissions = 262144, CreateDirectories = 4, CreateFiles = 2, Delete = 65536, DeleteSubdirectoriesAndFiles = 64, ExecuteFile = 32, FullControl = 2032127, ListDirectory = 1, Modify = 197055, Read = 131209, ReadAndExecute = 131241, ReadAttributes = 128, ReadData = 1, ReadExtendedAttributes = 8, ReadPermissions = 131072, Synchronize = 1048576, TakeOwnership = 524288, Traverse = 32, Write = 278, WriteAttributes = 256, WriteData = 2, WriteExtendedAttributes = 16, } public abstract partial class FileSystemSecurity : System.Security.AccessControl.NativeObjectSecurity { internal FileSystemSecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public override System.Type AccessRightType { get { throw null; } } public override System.Type AccessRuleType { get { throw null; } } public override System.Type AuditRuleType { get { throw null; } } public sealed 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; } public void AddAccessRule(System.Security.AccessControl.FileSystemAccessRule rule) { } public void AddAuditRule(System.Security.AccessControl.FileSystemAuditRule rule) { } public sealed 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; } public bool RemoveAccessRule(System.Security.AccessControl.FileSystemAccessRule rule) { throw null; } public void RemoveAccessRuleAll(System.Security.AccessControl.FileSystemAccessRule rule) { } public void RemoveAccessRuleSpecific(System.Security.AccessControl.FileSystemAccessRule rule) { } public bool RemoveAuditRule(System.Security.AccessControl.FileSystemAuditRule rule) { throw null; } public void RemoveAuditRuleAll(System.Security.AccessControl.FileSystemAuditRule rule) { } public void RemoveAuditRuleSpecific(System.Security.AccessControl.FileSystemAuditRule rule) { } public void ResetAccessRule(System.Security.AccessControl.FileSystemAccessRule rule) { } public void SetAccessRule(System.Security.AccessControl.FileSystemAccessRule rule) { } public void SetAuditRule(System.Security.AccessControl.FileSystemAuditRule rule) { } } public abstract partial class GenericAce { internal GenericAce() { } public System.Security.AccessControl.AceFlags AceFlags { get { throw null; } set { } } public System.Security.AccessControl.AceType AceType { get { throw null; } } public System.Security.AccessControl.AuditFlags AuditFlags { get { throw null; } } public abstract int BinaryLength { get; } public System.Security.AccessControl.InheritanceFlags InheritanceFlags { get { throw null; } } public bool IsInherited { get { throw null; } } public System.Security.AccessControl.PropagationFlags PropagationFlags { get { throw null; } } public System.Security.AccessControl.GenericAce Copy() { throw null; } public static System.Security.AccessControl.GenericAce CreateFromBinaryForm(byte[] binaryForm, int offset) { throw null; } public sealed override bool Equals(object o) { throw null; } public abstract void GetBinaryForm(byte[] binaryForm, int offset); public sealed override int GetHashCode() { throw null; } public static bool operator ==(System.Security.AccessControl.GenericAce left, System.Security.AccessControl.GenericAce right) { throw null; } public static bool operator !=(System.Security.AccessControl.GenericAce left, System.Security.AccessControl.GenericAce right) { throw null; } } public abstract partial class GenericAcl : System.Collections.ICollection, System.Collections.IEnumerable { public static readonly byte AclRevision; public static readonly byte AclRevisionDS; public static readonly int MaxBinaryLength; protected GenericAcl() { } public abstract int BinaryLength { get; } public abstract int Count { get; } public bool IsSynchronized { get { throw null; } } public abstract System.Security.AccessControl.GenericAce this[int index] { get; set; } public abstract byte Revision { get; } public virtual object SyncRoot { get { throw null; } } public void CopyTo(System.Security.AccessControl.GenericAce[] array, int index) { } public abstract void GetBinaryForm(byte[] binaryForm, int offset); public System.Security.AccessControl.AceEnumerator GetEnumerator() { throw null; } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } public abstract partial class GenericSecurityDescriptor { protected GenericSecurityDescriptor() { } public int BinaryLength { get { throw null; } } public abstract System.Security.AccessControl.ControlFlags ControlFlags { get; } public abstract System.Security.Principal.SecurityIdentifier Group { get; set; } public abstract System.Security.Principal.SecurityIdentifier Owner { get; set; } public static byte Revision { get { throw null; } } public void GetBinaryForm(byte[] binaryForm, int offset) { } public string GetSddlForm(System.Security.AccessControl.AccessControlSections includeSections) { throw null; } public static bool IsSddlConversionSupported() { throw null; } } [System.FlagsAttribute] public enum InheritanceFlags { ContainerInherit = 1, None = 0, ObjectInherit = 2, } public abstract partial class KnownAce : System.Security.AccessControl.GenericAce { internal KnownAce() { } public int AccessMask { get { throw null; } set { } } public System.Security.Principal.SecurityIdentifier SecurityIdentifier { get { throw null; } set { } } } public sealed partial class MutexAccessRule : System.Security.AccessControl.AccessRule { public MutexAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.MutexRights 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)) { } public MutexAccessRule(string identity, System.Security.AccessControl.MutexRights 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)) { } public System.Security.AccessControl.MutexRights MutexRights { get { throw null; } } } public sealed partial class MutexAuditRule : System.Security.AccessControl.AuditRule { public MutexAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.MutexRights 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)) { } public System.Security.AccessControl.MutexRights MutexRights { get { throw null; } } } [System.FlagsAttribute] public enum MutexRights { ChangePermissions = 262144, Delete = 65536, FullControl = 2031617, Modify = 1, ReadPermissions = 131072, Synchronize = 1048576, TakeOwnership = 524288, } public sealed partial class MutexSecurity : System.Security.AccessControl.NativeObjectSecurity { public MutexSecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public MutexSecurity(string name, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public override System.Type AccessRightType { get { throw null; } } public override System.Type AccessRuleType { get { throw null; } } public override System.Type AuditRuleType { get { throw null; } } 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; } public void AddAccessRule(System.Security.AccessControl.MutexAccessRule rule) { } public void AddAuditRule(System.Security.AccessControl.MutexAuditRule rule) { } 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; } public bool RemoveAccessRule(System.Security.AccessControl.MutexAccessRule rule) { throw null; } public void RemoveAccessRuleAll(System.Security.AccessControl.MutexAccessRule rule) { } public void RemoveAccessRuleSpecific(System.Security.AccessControl.MutexAccessRule rule) { } public bool RemoveAuditRule(System.Security.AccessControl.MutexAuditRule rule) { throw null; } public void RemoveAuditRuleAll(System.Security.AccessControl.MutexAuditRule rule) { } public void RemoveAuditRuleSpecific(System.Security.AccessControl.MutexAuditRule rule) { } public void ResetAccessRule(System.Security.AccessControl.MutexAccessRule rule) { } public void SetAccessRule(System.Security.AccessControl.MutexAccessRule rule) { } public void SetAuditRule(System.Security.AccessControl.MutexAuditRule rule) { } } public abstract partial class NativeObjectSecurity : System.Security.AccessControl.CommonObjectSecurity { protected NativeObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType) : base (default(bool)) { } protected NativeObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, System.Runtime.InteropServices.SafeHandle handle, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool)) { } protected NativeObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, System.Runtime.InteropServices.SafeHandle handle, System.Security.AccessControl.AccessControlSections includeSections, System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode exceptionFromErrorCode, object exceptionContext) : base (default(bool)) { } protected NativeObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode exceptionFromErrorCode, object exceptionContext) : base (default(bool)) { } protected NativeObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, string name, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool)) { } protected NativeObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, string name, System.Security.AccessControl.AccessControlSections includeSections, System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode exceptionFromErrorCode, object exceptionContext) : base (default(bool)) { } protected sealed override void Persist(System.Runtime.InteropServices.SafeHandle handle, System.Security.AccessControl.AccessControlSections includeSections) { } protected void Persist(System.Runtime.InteropServices.SafeHandle handle, System.Security.AccessControl.AccessControlSections includeSections, object exceptionContext) { } protected sealed override void Persist(string name, System.Security.AccessControl.AccessControlSections includeSections) { } protected void Persist(string name, System.Security.AccessControl.AccessControlSections includeSections, object exceptionContext) { } protected internal delegate System.Exception ExceptionFromErrorCode(int errorCode, string name, System.Runtime.InteropServices.SafeHandle handle, object context); } public abstract partial class ObjectAccessRule : System.Security.AccessControl.AccessRule { protected ObjectAccessRule(System.Security.Principal.IdentityReference identity, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Guid objectType, System.Guid inheritedObjectType, 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)) { } public System.Guid InheritedObjectType { get { throw null; } } public System.Security.AccessControl.ObjectAceFlags ObjectFlags { get { throw null; } } public System.Guid ObjectType { get { throw null; } } } public sealed partial class ObjectAce : System.Security.AccessControl.QualifiedAce { public ObjectAce(System.Security.AccessControl.AceFlags aceFlags, System.Security.AccessControl.AceQualifier qualifier, int accessMask, System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAceFlags flags, System.Guid type, System.Guid inheritedType, bool isCallback, byte[] opaque) { } public override int BinaryLength { get { throw null; } } public System.Guid InheritedObjectAceType { get { throw null; } set { } } public System.Security.AccessControl.ObjectAceFlags ObjectAceFlags { get { throw null; } set { } } public System.Guid ObjectAceType { get { throw null; } set { } } public override void GetBinaryForm(byte[] binaryForm, int offset) { } public static int MaxOpaqueLength(bool isCallback) { throw null; } } [System.FlagsAttribute] public enum ObjectAceFlags { InheritedObjectAceTypePresent = 2, None = 0, ObjectAceTypePresent = 1, } public abstract partial class ObjectAuditRule : System.Security.AccessControl.AuditRule { protected ObjectAuditRule(System.Security.Principal.IdentityReference identity, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Guid objectType, System.Guid inheritedObjectType, System.Security.AccessControl.AuditFlags auditFlags) : 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)) { } public System.Guid InheritedObjectType { get { throw null; } } public System.Security.AccessControl.ObjectAceFlags ObjectFlags { get { throw null; } } public System.Guid ObjectType { get { throw null; } } } public abstract partial class ObjectSecurity { protected ObjectSecurity() { } protected ObjectSecurity(bool isContainer, bool isDS) { } protected ObjectSecurity(System.Security.AccessControl.CommonSecurityDescriptor securityDescriptor) { } public abstract System.Type AccessRightType { get; } protected bool AccessRulesModified { get { throw null; } set { } } public abstract System.Type AccessRuleType { get; } public bool AreAccessRulesCanonical { get { throw null; } } public bool AreAccessRulesProtected { get { throw null; } } public bool AreAuditRulesCanonical { get { throw null; } } public bool AreAuditRulesProtected { get { throw null; } } protected bool AuditRulesModified { get { throw null; } set { } } public abstract System.Type AuditRuleType { get; } protected bool GroupModified { get { throw null; } set { } } protected bool IsContainer { get { throw null; } } protected bool IsDS { get { throw null; } } protected bool OwnerModified { get { throw null; } set { } } public abstract 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); public abstract 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); public System.Security.Principal.IdentityReference GetGroup(System.Type targetType) { throw null; } public System.Security.Principal.IdentityReference GetOwner(System.Type targetType) { throw null; } public byte[] GetSecurityDescriptorBinaryForm() { throw null; } public string GetSecurityDescriptorSddlForm(System.Security.AccessControl.AccessControlSections includeSections) { throw null; } public static bool IsSddlConversionSupported() { throw null; } protected abstract bool ModifyAccess(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AccessRule rule, out bool modified); public virtual bool ModifyAccessRule(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AccessRule rule, out bool modified) { throw null; } protected abstract bool ModifyAudit(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AuditRule rule, out bool modified); public virtual bool ModifyAuditRule(System.Security.AccessControl.AccessControlModification modification, System.Security.AccessControl.AuditRule rule, out bool modified) { throw null; } [System.MonoTODOAttribute] [System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute] protected virtual void Persist(bool enableOwnershipPrivilege, string name, System.Security.AccessControl.AccessControlSections includeSections) { } protected virtual void Persist(System.Runtime.InteropServices.SafeHandle handle, System.Security.AccessControl.AccessControlSections includeSections) { } protected virtual void Persist(string name, System.Security.AccessControl.AccessControlSections includeSections) { } public virtual void PurgeAccessRules(System.Security.Principal.IdentityReference identity) { } public virtual void PurgeAuditRules(System.Security.Principal.IdentityReference identity) { } protected void ReadLock() { } protected void ReadUnlock() { } public void SetAccessRuleProtection(bool isProtected, bool preserveInheritance) { } public void SetAuditRuleProtection(bool isProtected, bool preserveInheritance) { } public void SetGroup(System.Security.Principal.IdentityReference identity) { } public void SetOwner(System.Security.Principal.IdentityReference identity) { } public void SetSecurityDescriptorBinaryForm(byte[] binaryForm) { } public void SetSecurityDescriptorBinaryForm(byte[] binaryForm, System.Security.AccessControl.AccessControlSections includeSections) { } public void SetSecurityDescriptorSddlForm(string sddlForm) { } public void SetSecurityDescriptorSddlForm(string sddlForm, System.Security.AccessControl.AccessControlSections includeSections) { } protected void WriteLock() { } protected void WriteUnlock() { } } public abstract partial class ObjectSecurity : System.Security.AccessControl.NativeObjectSecurity where T : struct { protected ObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } protected ObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, System.Runtime.InteropServices.SafeHandle safeHandle, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } protected ObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, System.Runtime.InteropServices.SafeHandle safeHandle, System.Security.AccessControl.AccessControlSections includeSections, System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode exceptionFromErrorCode, object exceptionContext) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } protected ObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, string name, System.Security.AccessControl.AccessControlSections includeSections) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } protected ObjectSecurity(bool isContainer, System.Security.AccessControl.ResourceType resourceType, string name, System.Security.AccessControl.AccessControlSections includeSections, System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode exceptionFromErrorCode, object exceptionContext) : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public override System.Type AccessRightType { get { throw null; } } public override System.Type AccessRuleType { get { throw null; } } public override System.Type AuditRuleType { get { throw null; } } 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; } public virtual void AddAccessRule(System.Security.AccessControl.AccessRule rule) { } public virtual void AddAuditRule(System.Security.AccessControl.AuditRule rule) { } 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; } protected void Persist(System.Runtime.InteropServices.SafeHandle handle) { } protected void Persist(string name) { } public virtual bool RemoveAccessRule(System.Security.AccessControl.AccessRule rule) { throw null; } public virtual void RemoveAccessRuleAll(System.Security.AccessControl.AccessRule rule) { } public virtual void RemoveAccessRuleSpecific(System.Security.AccessControl.AccessRule rule) { } public virtual bool RemoveAuditRule(System.Security.AccessControl.AuditRule rule) { throw null; } public virtual void RemoveAuditRuleAll(System.Security.AccessControl.AuditRule rule) { } public virtual void RemoveAuditRuleSpecific(System.Security.AccessControl.AuditRule rule) { } public virtual void ResetAccessRule(System.Security.AccessControl.AccessRule rule) { } public virtual void SetAccessRule(System.Security.AccessControl.AccessRule rule) { } public virtual void SetAuditRule(System.Security.AccessControl.AuditRule rule) { } } [System.SerializableAttribute] public sealed partial class PrivilegeNotHeldException : System.UnauthorizedAccessException, System.Runtime.Serialization.ISerializable { public PrivilegeNotHeldException() { } public PrivilegeNotHeldException(string privilege) { } public PrivilegeNotHeldException(string privilege, System.Exception inner) { } public string PrivilegeName { get { throw null; } } public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.FlagsAttribute] public enum PropagationFlags { InheritOnly = 2, None = 0, NoPropagateInherit = 1, } public abstract partial class QualifiedAce : System.Security.AccessControl.KnownAce { internal QualifiedAce() { } public System.Security.AccessControl.AceQualifier AceQualifier { get { throw null; } } public bool IsCallback { get { throw null; } } public int OpaqueLength { get { throw null; } } public byte[] GetOpaque() { throw null; } public void SetOpaque(byte[] opaque) { } } public sealed partial class RawAcl : System.Security.AccessControl.GenericAcl { public RawAcl(byte revision, int capacity) { } public RawAcl(byte[] binaryForm, int offset) { } public override int BinaryLength { get { throw null; } } public override int Count { get { throw null; } } public override System.Security.AccessControl.GenericAce this[int index] { get { throw null; } set { } } public override byte Revision { get { throw null; } } public override void GetBinaryForm(byte[] binaryForm, int offset) { } public void InsertAce(int index, System.Security.AccessControl.GenericAce ace) { } public void RemoveAce(int index) { } } public sealed partial class RawSecurityDescriptor : System.Security.AccessControl.GenericSecurityDescriptor { public RawSecurityDescriptor(byte[] binaryForm, int offset) { } public RawSecurityDescriptor(System.Security.AccessControl.ControlFlags flags, System.Security.Principal.SecurityIdentifier owner, System.Security.Principal.SecurityIdentifier group, System.Security.AccessControl.RawAcl systemAcl, System.Security.AccessControl.RawAcl discretionaryAcl) { } public RawSecurityDescriptor(string sddlForm) { } public override System.Security.AccessControl.ControlFlags ControlFlags { get { throw null; } } public System.Security.AccessControl.RawAcl DiscretionaryAcl { get { throw null; } set { } } public override System.Security.Principal.SecurityIdentifier Group { get { throw null; } set { } } public override System.Security.Principal.SecurityIdentifier Owner { get { throw null; } set { } } public byte ResourceManagerControl { get { throw null; } set { } } public System.Security.AccessControl.RawAcl SystemAcl { get { throw null; } set { } } public void SetFlags(System.Security.AccessControl.ControlFlags flags) { } } public sealed partial class RegistryAccessRule : System.Security.AccessControl.AccessRule { public RegistryAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.RegistryRights registryRights, 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)) { } public RegistryAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public RegistryAccessRule(string identity, System.Security.AccessControl.RegistryRights registryRights, 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)) { } public RegistryAccessRule(string identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public System.Security.AccessControl.RegistryRights RegistryRights { get { throw null; } } } public sealed partial class RegistryAuditRule : System.Security.AccessControl.AuditRule { public RegistryAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public RegistryAuditRule(string identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, 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)) { } public System.Security.AccessControl.RegistryRights RegistryRights { get { throw null; } } } [System.FlagsAttribute] public enum RegistryRights { ChangePermissions = 262144, CreateLink = 32, CreateSubKey = 4, Delete = 65536, EnumerateSubKeys = 8, ExecuteKey = 131097, FullControl = 983103, Notify = 16, QueryValues = 1, ReadKey = 131097, ReadPermissions = 131072, SetValue = 2, TakeOwnership = 524288, WriteKey = 131078, } public sealed partial class RegistrySecurity : System.Security.AccessControl.NativeObjectSecurity { public RegistrySecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { } public override System.Type AccessRightType { get { throw null; } } public override System.Type AccessRuleType { get { throw null; } } public override System.Type AuditRuleType { get { throw null; } } 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; } public void AddAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { } public void AddAuditRule(System.Security.AccessControl.RegistryAuditRule rule) { } 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; } public bool RemoveAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { throw null; } public void RemoveAccessRuleAll(System.Security.AccessControl.RegistryAccessRule rule) { } public void RemoveAccessRuleSpecific(System.Security.AccessControl.RegistryAccessRule rule) { } public bool RemoveAuditRule(System.Security.AccessControl.RegistryAuditRule rule) { throw null; } public void RemoveAuditRuleAll(System.Security.AccessControl.RegistryAuditRule rule) { } public void RemoveAuditRuleSpecific(System.Security.AccessControl.RegistryAuditRule rule) { } public void ResetAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { } public void SetAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { } public void SetAuditRule(System.Security.AccessControl.RegistryAuditRule rule) { } } public enum ResourceType { DSObject = 8, DSObjectAll = 9, FileObject = 1, KernelObject = 6, LMShare = 5, Printer = 3, ProviderDefined = 10, RegistryKey = 4, RegistryWow6432Key = 12, Service = 2, Unknown = 0, WindowObject = 7, WmiGuidObject = 11, } [System.FlagsAttribute] public enum SecurityInfos { DiscretionaryAcl = 4, Group = 2, Owner = 1, SystemAcl = 8, } public sealed partial class SystemAcl : System.Security.AccessControl.CommonAcl { public SystemAcl(bool isContainer, bool isDS, byte revision, int capacity) { } public SystemAcl(bool isContainer, bool isDS, int capacity) { } public SystemAcl(bool isContainer, bool isDS, System.Security.AccessControl.RawAcl rawAcl) { } public void AddAudit(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { } public void AddAudit(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { } public void AddAudit(System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAuditRule rule) { } [System.MonoTODOAttribute] public bool RemoveAudit(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { throw null; } [System.MonoTODOAttribute] public bool RemoveAudit(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { throw null; } public bool RemoveAudit(System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAuditRule rule) { throw null; } public void RemoveAuditSpecific(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { } public void RemoveAuditSpecific(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { } public void RemoveAuditSpecific(System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAuditRule rule) { } public void SetAudit(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags) { } public void SetAudit(System.Security.AccessControl.AuditFlags auditFlags, System.Security.Principal.SecurityIdentifier sid, int accessMask, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.ObjectAceFlags objectFlags, System.Guid objectType, System.Guid inheritedObjectType) { } public void SetAudit(System.Security.Principal.SecurityIdentifier sid, System.Security.AccessControl.ObjectAuditRule rule) { } } } namespace System.Security.Claims { [System.SerializableAttribute] public partial class Claim { public Claim(System.IO.BinaryReader reader) { } public Claim(System.IO.BinaryReader reader, System.Security.Claims.ClaimsIdentity subject) { } protected Claim(System.Security.Claims.Claim other) { } protected Claim(System.Security.Claims.Claim other, System.Security.Claims.ClaimsIdentity subject) { } public Claim(string type, string value) { } public Claim(string type, string value, string valueType) { } public Claim(string type, string value, string valueType, string issuer) { } public Claim(string type, string value, string valueType, string issuer, string originalIssuer) { } public Claim(string type, string value, string valueType, string issuer, string originalIssuer, System.Security.Claims.ClaimsIdentity subject) { } protected virtual byte[] CustomSerializationData { get { throw null; } } public string Issuer { get { throw null; } } public string OriginalIssuer { get { throw null; } } public System.Collections.Generic.IDictionary Properties { get { throw null; } } public System.Security.Claims.ClaimsIdentity Subject { get { throw null; } } public string Type { get { throw null; } } public string Value { get { throw null; } } public string ValueType { get { throw null; } } public virtual System.Security.Claims.Claim Clone() { throw null; } public virtual System.Security.Claims.Claim Clone(System.Security.Claims.ClaimsIdentity identity) { throw null; } public override string ToString() { throw null; } public virtual void WriteTo(System.IO.BinaryWriter writer) { } protected virtual void WriteTo(System.IO.BinaryWriter writer, byte[] userData) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ClaimsIdentity : System.Security.Principal.IIdentity { [System.NonSerializedAttribute] public const string DefaultIssuer = "LOCAL AUTHORITY"; [System.NonSerializedAttribute] public const string DefaultNameClaimType = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name"; [System.NonSerializedAttribute] public const string DefaultRoleClaimType = "http://schemas.microsoft.com/ws/2008/06/identity/claims/role"; public ClaimsIdentity() { } public ClaimsIdentity(System.Collections.Generic.IEnumerable claims) { } public ClaimsIdentity(System.Collections.Generic.IEnumerable claims, string authenticationType) { } public ClaimsIdentity(System.Collections.Generic.IEnumerable claims, string authenticationType, string nameType, string roleType) { } public ClaimsIdentity(System.IO.BinaryReader reader) { } [System.Security.SecurityCriticalAttribute] protected ClaimsIdentity(System.Runtime.Serialization.SerializationInfo info) { } [System.Security.SecurityCriticalAttribute] protected ClaimsIdentity(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } protected ClaimsIdentity(System.Security.Claims.ClaimsIdentity other) { } public ClaimsIdentity(System.Security.Principal.IIdentity identity) { } public ClaimsIdentity(System.Security.Principal.IIdentity identity, System.Collections.Generic.IEnumerable claims) { } public ClaimsIdentity(System.Security.Principal.IIdentity identity, System.Collections.Generic.IEnumerable claims, string authenticationType, string nameType, string roleType) { } public ClaimsIdentity(string authenticationType) { } public ClaimsIdentity(string authenticationType, string nameType, string roleType) { } public System.Security.Claims.ClaimsIdentity Actor { get { throw null; } set { } } public virtual string AuthenticationType { get { throw null; } } public object BootstrapContext { get { throw null; } [System.Security.SecurityCriticalAttribute]set { } } public virtual System.Collections.Generic.IEnumerable Claims { get { throw null; } } protected virtual byte[] CustomSerializationData { get { throw null; } } public virtual bool IsAuthenticated { get { throw null; } } public string Label { get { throw null; } set { } } public virtual string Name { get { throw null; } } public string NameClaimType { get { throw null; } } public string RoleClaimType { get { throw null; } } [System.Security.SecurityCriticalAttribute] public virtual void AddClaim(System.Security.Claims.Claim claim) { } [System.Security.SecurityCriticalAttribute] public virtual void AddClaims(System.Collections.Generic.IEnumerable claims) { } public virtual System.Security.Claims.ClaimsIdentity Clone() { throw null; } protected virtual System.Security.Claims.Claim CreateClaim(System.IO.BinaryReader reader) { throw null; } public virtual System.Collections.Generic.IEnumerable FindAll(System.Predicate match) { throw null; } public virtual System.Collections.Generic.IEnumerable FindAll(string type) { throw null; } public virtual System.Security.Claims.Claim FindFirst(System.Predicate match) { throw null; } public virtual System.Security.Claims.Claim FindFirst(string type) { throw null; } [System.Security.SecurityCriticalAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, SerializationFormatter=true)] protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual bool HasClaim(System.Predicate match) { throw null; } public virtual bool HasClaim(string type, string value) { throw null; } [System.Security.SecurityCriticalAttribute] public virtual void RemoveClaim(System.Security.Claims.Claim claim) { } [System.Security.SecurityCriticalAttribute] public virtual bool TryRemoveClaim(System.Security.Claims.Claim claim) { throw null; } public virtual void WriteTo(System.IO.BinaryWriter writer) { } protected virtual void WriteTo(System.IO.BinaryWriter writer, byte[] userData) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ClaimsPrincipal : System.Security.Principal.IPrincipal { public ClaimsPrincipal() { } public ClaimsPrincipal(System.Collections.Generic.IEnumerable identities) { } public ClaimsPrincipal(System.IO.BinaryReader reader) { } [System.Security.SecurityCriticalAttribute] protected ClaimsPrincipal(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ClaimsPrincipal(System.Security.Principal.IIdentity identity) { } public ClaimsPrincipal(System.Security.Principal.IPrincipal principal) { } public virtual System.Collections.Generic.IEnumerable Claims { get { throw null; } } public static System.Func ClaimsPrincipalSelector { get { throw null; } [System.Security.SecurityCriticalAttribute]set { } } public static System.Security.Claims.ClaimsPrincipal Current { get { throw null; } } protected virtual byte[] CustomSerializationData { get { throw null; } } public virtual System.Collections.Generic.IEnumerable Identities { get { throw null; } } public virtual System.Security.Principal.IIdentity Identity { get { throw null; } } public static System.Func, System.Security.Claims.ClaimsIdentity> PrimaryIdentitySelector { get { throw null; } [System.Security.SecurityCriticalAttribute]set { } } [System.Security.SecurityCriticalAttribute] public virtual void AddIdentities(System.Collections.Generic.IEnumerable identities) { } [System.Security.SecurityCriticalAttribute] public virtual void AddIdentity(System.Security.Claims.ClaimsIdentity identity) { } public virtual System.Security.Claims.ClaimsPrincipal Clone() { throw null; } protected virtual System.Security.Claims.ClaimsIdentity CreateClaimsIdentity(System.IO.BinaryReader reader) { throw null; } public virtual System.Collections.Generic.IEnumerable FindAll(System.Predicate match) { throw null; } public virtual System.Collections.Generic.IEnumerable FindAll(string type) { throw null; } public virtual System.Security.Claims.Claim FindFirst(System.Predicate match) { throw null; } public virtual System.Security.Claims.Claim FindFirst(string type) { throw null; } [System.Security.SecurityCriticalAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, SerializationFormatter=true)] protected virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public virtual bool HasClaim(System.Predicate match) { throw null; } public virtual bool HasClaim(string type, string value) { throw null; } public virtual bool IsInRole(string role) { throw null; } public virtual void WriteTo(System.IO.BinaryWriter writer) { } protected virtual void WriteTo(System.IO.BinaryWriter writer, byte[] userData) { } } public static partial class ClaimTypes { public const string Actor = "http://schemas.xmlsoap.org/ws/2009/09/identity/claims/actor"; public const string Anonymous = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/anonymous"; public const string Authentication = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/authentication"; public const string AuthenticationInstant = "http://schemas.microsoft.com/ws/2008/06/identity/claims/authenticationinstant"; public const string AuthenticationMethod = "http://schemas.microsoft.com/ws/2008/06/identity/claims/authenticationmethod"; public const string AuthorizationDecision = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/authorizationdecision"; public const string CookiePath = "http://schemas.microsoft.com/ws/2008/06/identity/claims/cookiepath"; public const string Country = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/country"; public const string DateOfBirth = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/dateofbirth"; public const string DenyOnlyPrimaryGroupSid = "http://schemas.microsoft.com/ws/2008/06/identity/claims/denyonlyprimarygroupsid"; public const string DenyOnlyPrimarySid = "http://schemas.microsoft.com/ws/2008/06/identity/claims/denyonlyprimarysid"; public const string DenyOnlySid = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/denyonlysid"; public const string DenyOnlyWindowsDeviceGroup = "http://schemas.microsoft.com/ws/2008/06/identity/claims/denyonlywindowsdevicegroup"; public const string Dns = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/dns"; public const string Dsa = "http://schemas.microsoft.com/ws/2008/06/identity/claims/dsa"; public const string Email = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"; public const string Expiration = "http://schemas.microsoft.com/ws/2008/06/identity/claims/expiration"; public const string Expired = "http://schemas.microsoft.com/ws/2008/06/identity/claims/expired"; public const string Gender = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/gender"; public const string GivenName = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname"; public const string GroupSid = "http://schemas.microsoft.com/ws/2008/06/identity/claims/groupsid"; public const string Hash = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/hash"; public const string HomePhone = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/homephone"; public const string IsPersistent = "http://schemas.microsoft.com/ws/2008/06/identity/claims/ispersistent"; public const string Locality = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/locality"; public const string MobilePhone = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/mobilephone"; public const string Name = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name"; public const string NameIdentifier = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"; public const string OtherPhone = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/otherphone"; public const string PostalCode = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/postalcode"; public const string PrimaryGroupSid = "http://schemas.microsoft.com/ws/2008/06/identity/claims/primarygroupsid"; public const string PrimarySid = "http://schemas.microsoft.com/ws/2008/06/identity/claims/primarysid"; public const string Role = "http://schemas.microsoft.com/ws/2008/06/identity/claims/role"; public const string Rsa = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/rsa"; public const string SerialNumber = "http://schemas.microsoft.com/ws/2008/06/identity/claims/serialnumber"; public const string Sid = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/sid"; public const string Spn = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/spn"; public const string StateOrProvince = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/stateorprovince"; public const string StreetAddress = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/streetaddress"; public const string Surname = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname"; public const string System = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/system"; public const string Thumbprint = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/thumbprint"; public const string Upn = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn"; public const string Uri = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/uri"; public const string UserData = "http://schemas.microsoft.com/ws/2008/06/identity/claims/userdata"; public const string Version = "http://schemas.microsoft.com/ws/2008/06/identity/claims/version"; public const string Webpage = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/webpage"; public const string WindowsAccountName = "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsaccountname"; public const string WindowsDeviceClaim = "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsdeviceclaim"; public const string WindowsDeviceGroup = "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsdevicegroup"; public const string WindowsFqbnVersion = "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsfqbnversion"; public const string WindowsSubAuthority = "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowssubauthority"; public const string WindowsUserClaim = "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsuserclaim"; public const string X500DistinguishedName = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/x500distinguishedname"; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static partial class ClaimValueTypes { public const string Base64Binary = "http://www.w3.org/2001/XMLSchema#base64Binary"; public const string Base64Octet = "http://www.w3.org/2001/XMLSchema#base64Octet"; public const string Boolean = "http://www.w3.org/2001/XMLSchema#boolean"; public const string Date = "http://www.w3.org/2001/XMLSchema#date"; public const string DateTime = "http://www.w3.org/2001/XMLSchema#dateTime"; public const string DaytimeDuration = "http://www.w3.org/TR/2002/WD-xquery-operators-20020816#dayTimeDuration"; public const string DnsName = "http://schemas.xmlsoap.org/claims/dns"; public const string Double = "http://www.w3.org/2001/XMLSchema#double"; public const string DsaKeyValue = "http://www.w3.org/2000/09/xmldsig#DSAKeyValue"; public const string Email = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"; public const string Fqbn = "http://www.w3.org/2001/XMLSchema#fqbn"; public const string HexBinary = "http://www.w3.org/2001/XMLSchema#hexBinary"; public const string Integer = "http://www.w3.org/2001/XMLSchema#integer"; public const string Integer32 = "http://www.w3.org/2001/XMLSchema#integer32"; public const string Integer64 = "http://www.w3.org/2001/XMLSchema#integer64"; public const string KeyInfo = "http://www.w3.org/2000/09/xmldsig#KeyInfo"; public const string Rfc822Name = "urn:oasis:names:tc:xacml:1.0:data-type:rfc822Name"; public const string Rsa = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/rsa"; public const string RsaKeyValue = "http://www.w3.org/2000/09/xmldsig#RSAKeyValue"; public const string Sid = "http://www.w3.org/2001/XMLSchema#sid"; public const string String = "http://www.w3.org/2001/XMLSchema#string"; public const string Time = "http://www.w3.org/2001/XMLSchema#time"; public const string UInteger32 = "http://www.w3.org/2001/XMLSchema#uinteger32"; public const string UInteger64 = "http://www.w3.org/2001/XMLSchema#uinteger64"; public const string UpnName = "http://schemas.xmlsoap.org/claims/UPN"; public const string X500Name = "urn:oasis:names:tc:xacml:1.0:data-type:x500Name"; public const string YearMonthDuration = "http://www.w3.org/TR/2002/WD-xquery-operators-20020816#yearMonthDuration"; } } namespace System.Security.Cryptography { [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System.Core, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")] public abstract partial class Aes : System.Security.Cryptography.SymmetricAlgorithm { protected Aes() { } public static new System.Security.Cryptography.Aes Create() { throw null; } public static new System.Security.Cryptography.Aes Create(string algorithmName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class AsymmetricAlgorithm : System.IDisposable { protected int KeySizeValue; protected System.Security.Cryptography.KeySizes[] LegalKeySizesValue; protected AsymmetricAlgorithm() { } public virtual string KeyExchangeAlgorithm { get { throw null; } } public virtual int KeySize { get { throw null; } set { } } public virtual System.Security.Cryptography.KeySizes[] LegalKeySizes { get { throw null; } } public virtual string SignatureAlgorithm { get { throw null; } } public void Clear() { } public static System.Security.Cryptography.AsymmetricAlgorithm Create() { throw null; } public static System.Security.Cryptography.AsymmetricAlgorithm Create(string algName) { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public virtual void FromXmlString(string xmlString) { } public virtual string ToXmlString(bool includePrivateParameters) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class AsymmetricKeyExchangeDeformatter { protected AsymmetricKeyExchangeDeformatter() { } public abstract string Parameters { get; set; } public abstract byte[] DecryptKeyExchange(byte[] rgb); public abstract void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class AsymmetricKeyExchangeFormatter { protected AsymmetricKeyExchangeFormatter() { } public abstract string Parameters { get; } public abstract byte[] CreateKeyExchange(byte[] data); public abstract byte[] CreateKeyExchange(byte[] data, System.Type symAlgType); public abstract void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class AsymmetricSignatureDeformatter { protected AsymmetricSignatureDeformatter() { } public abstract void SetHashAlgorithm(string strName); public abstract void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key); public abstract bool VerifySignature(byte[] rgbHash, byte[] rgbSignature); public virtual bool VerifySignature(System.Security.Cryptography.HashAlgorithm hash, byte[] rgbSignature) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class AsymmetricSignatureFormatter { protected AsymmetricSignatureFormatter() { } public abstract byte[] CreateSignature(byte[] rgbHash); public virtual byte[] CreateSignature(System.Security.Cryptography.HashAlgorithm hash) { throw null; } public abstract void SetHashAlgorithm(string strName); public abstract void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum CipherMode { CBC = 1, CFB = 4, CTS = 5, ECB = 2, OFB = 3, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class CryptoAPITransform : System.IDisposable, System.Security.Cryptography.ICryptoTransform { internal CryptoAPITransform() { } public bool CanReuseTransform { get { throw null; } } public bool CanTransformMultipleBlocks { get { throw null; } } public int InputBlockSize { get { throw null; } } public System.IntPtr KeyHandle { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, UnmanagedCode=true)]get { throw null; } } public int OutputBlockSize { get { throw null; } } public void Clear() { } public void Dispose() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void Reset() { } public int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) { throw null; } public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class CryptoConfig { public CryptoConfig() { } [System.MonoLimitationAttribute("nothing is FIPS certified so it never make sense to restrict to this (empty) subset")] public static bool AllowOnlyFipsAlgorithms { get { throw null; } } public static void AddAlgorithm(System.Type algorithm, params string[] names) { } public static void AddOID(string oid, params string[] names) { } public static object CreateFromName(string name) { throw null; } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)] public static object CreateFromName(string name, params object[] args) { throw null; } public static byte[] EncodeOID(string str) { throw null; } public static string MapNameToOID(string name) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class CryptographicException : System.SystemException { public CryptographicException() { } [System.Security.SecuritySafeCriticalAttribute] public CryptographicException(int hr) { } protected CryptographicException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public CryptographicException(string message) { } public CryptographicException(string message, System.Exception inner) { } public CryptographicException(string format, string insert) { } } public static partial class CryptographicOperations { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining, NoOptimization)]public static bool FixedTimeEquals(System.ReadOnlySpan left, System.ReadOnlySpan right) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining, NoOptimization)]public static void ZeroMemory(System.Span buffer) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class CryptographicUnexpectedOperationException : System.Security.Cryptography.CryptographicException { public CryptographicUnexpectedOperationException() { } protected CryptographicUnexpectedOperationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public CryptographicUnexpectedOperationException(string message) { } public CryptographicUnexpectedOperationException(string message, System.Exception inner) { } public CryptographicUnexpectedOperationException(string format, string insert) { } } public partial class CryptoStream : System.IO.Stream, System.IDisposable { public CryptoStream(System.IO.Stream stream, System.Security.Cryptography.ICryptoTransform transform, System.Security.Cryptography.CryptoStreamMode mode) { } public CryptoStream(System.IO.Stream stream, System.Security.Cryptography.ICryptoTransform transform, System.Security.Cryptography.CryptoStreamMode mode, bool leaveOpen) { } public override bool CanRead { get { throw null; } } public override bool CanSeek { get { throw null; } } public override bool CanWrite { get { throw null; } } public bool HasFlushedFinalBlock { get { throw null; } } public override long Length { get { throw null; } } public override long Position { get { throw null; } set { } } public override System.IAsyncResult BeginRead(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; } public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, int count, System.AsyncCallback callback, object state) { throw null; } public void Clear() { } protected override void Dispose(bool disposing) { } public override int EndRead(System.IAsyncResult asyncResult) { throw null; } public override void EndWrite(System.IAsyncResult asyncResult) { } public override void Flush() { } public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; } public void FlushFinalBlock() { } public override int Read(byte[] buffer, int offset, int count) { throw null; } public override System.Threading.Tasks.Task ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override int ReadByte() { throw null; } public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; } public override void SetLength(long value) { } public override void Write(byte[] buffer, int offset, int count) { } public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; } public override void WriteByte(byte value) { } } public enum CryptoStreamMode { Read = 0, Write = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class CspKeyContainerInfo { public CspKeyContainerInfo(System.Security.Cryptography.CspParameters parameters) { } public bool Accessible { get { throw null; } } public System.Security.AccessControl.CryptoKeySecurity CryptoKeySecurity { get { throw null; } } public bool Exportable { get { throw null; } } public bool HardwareDevice { get { throw null; } } public string KeyContainerName { get { throw null; } } public System.Security.Cryptography.KeyNumber KeyNumber { get { throw null; } } public bool MachineKeyStore { get { throw null; } } public bool Protected { get { throw null; } } public string ProviderName { get { throw null; } } public int ProviderType { get { throw null; } } public bool RandomlyGenerated { get { throw null; } } public bool Removable { get { throw null; } } public string UniqueKeyContainerName { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class CspParameters { public string KeyContainerName; public int KeyNumber; public string ProviderName; public int ProviderType; public CspParameters() { } public CspParameters(int dwTypeIn) { } public CspParameters(int dwTypeIn, string strProviderNameIn) { } public CspParameters(int dwTypeIn, string strProviderNameIn, string strContainerNameIn) { } public CspParameters(int providerType, string providerName, string keyContainerName, System.Security.AccessControl.CryptoKeySecurity cryptoKeySecurity, System.IntPtr parentWindowHandle) { } public CspParameters(int providerType, string providerName, string keyContainerName, System.Security.AccessControl.CryptoKeySecurity cryptoKeySecurity, System.Security.SecureString keyPassword) { } public System.Security.AccessControl.CryptoKeySecurity CryptoKeySecurity { get { throw null; } set { } } public System.Security.Cryptography.CspProviderFlags Flags { get { throw null; } set { } } public System.Security.SecureString KeyPassword { get { throw null; } set { } } public System.IntPtr ParentWindowHandle { get { throw null; } set { } } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum CspProviderFlags { CreateEphemeralKey = 128, NoFlags = 0, NoPrompt = 64, UseArchivableKey = 16, UseDefaultKeyContainer = 2, UseExistingKey = 8, UseMachineKeyStore = 1, UseNonExportableKey = 4, UseUserProtectedKey = 32, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class DeriveBytes : System.IDisposable { protected DeriveBytes() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public abstract byte[] GetBytes(int cb); public abstract void Reset(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class DES : System.Security.Cryptography.SymmetricAlgorithm { protected DES() { } public override byte[] Key { get { throw null; } set { } } public static new System.Security.Cryptography.DES Create() { throw null; } public static new System.Security.Cryptography.DES Create(string algName) { throw null; } public static bool IsSemiWeakKey(byte[] rgbKey) { throw null; } public static bool IsWeakKey(byte[] rgbKey) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DESCryptoServiceProvider : System.Security.Cryptography.DES { [System.Security.SecuritySafeCriticalAttribute] public DESCryptoServiceProvider() { } [System.Security.SecuritySafeCriticalAttribute] public override System.Security.Cryptography.ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public override System.Security.Cryptography.ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } public override void GenerateIV() { } public override void GenerateKey() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class DSA : System.Security.Cryptography.AsymmetricAlgorithm { protected DSA() { } public static new System.Security.Cryptography.DSA Create() { throw null; } public static System.Security.Cryptography.DSA Create(int keySizeInBits) { throw null; } public static System.Security.Cryptography.DSA Create(System.Security.Cryptography.DSAParameters parameters) { throw null; } public static new System.Security.Cryptography.DSA Create(string algName) { throw null; } public abstract byte[] CreateSignature(byte[] rgbHash); public abstract System.Security.Cryptography.DSAParameters ExportParameters(bool includePrivateParameters); public override void FromXmlString(string xmlString) { } protected virtual byte[] HashData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } protected virtual byte[] HashData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public abstract void ImportParameters(System.Security.Cryptography.DSAParameters parameters); public virtual byte[] SignData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public byte[] SignData(byte[] data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public virtual byte[] SignData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public override string ToXmlString(bool includePrivateParameters) { throw null; } public virtual bool TryCreateSignature(System.ReadOnlySpan hash, System.Span destination, out int bytesWritten) { throw null; } protected virtual bool TryHashData(System.ReadOnlySpan data, System.Span destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, out int bytesWritten) { throw null; } public virtual bool TrySignData(System.ReadOnlySpan data, System.Span destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, out int bytesWritten) { throw null; } public bool VerifyData(byte[] data, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public virtual bool VerifyData(byte[] data, int offset, int count, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public virtual bool VerifyData(System.IO.Stream data, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public virtual bool VerifyData(System.ReadOnlySpan data, System.ReadOnlySpan signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public abstract bool VerifySignature(byte[] rgbHash, byte[] rgbSignature); public virtual bool VerifySignature(System.ReadOnlySpan hash, System.ReadOnlySpan signature) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class DSACryptoServiceProvider : System.Security.Cryptography.DSA, System.Security.Cryptography.ICspAsymmetricAlgorithm { public DSACryptoServiceProvider() { } public DSACryptoServiceProvider(int dwKeySize) { } public DSACryptoServiceProvider(int dwKeySize, System.Security.Cryptography.CspParameters parameters) { } public DSACryptoServiceProvider(System.Security.Cryptography.CspParameters parameters) { } [System.MonoTODOAttribute("call into KeyPairPersistence to get details")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Cryptography.CspKeyContainerInfo CspKeyContainerInfo { get { throw null; } } public override string KeyExchangeAlgorithm { get { throw null; } } public override int KeySize { get { throw null; } } public bool PersistKeyInCsp { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool PublicOnly { get { throw null; } } public override string SignatureAlgorithm { get { throw null; } } public static bool UseMachineKeyStore { get { throw null; } set { } } public override byte[] CreateSignature(byte[] rgbHash) { throw null; } protected override void Dispose(bool disposing) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public byte[] ExportCspBlob(bool includePrivateParameters) { throw null; } public override System.Security.Cryptography.DSAParameters ExportParameters(bool includePrivateParameters) { throw null; } ~DSACryptoServiceProvider() { } protected override byte[] HashData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } protected override byte[] HashData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void ImportCspBlob(byte[] keyBlob) { } public override void ImportParameters(System.Security.Cryptography.DSAParameters parameters) { } public byte[] SignData(byte[] buffer) { throw null; } public byte[] SignData(byte[] buffer, int offset, int count) { throw null; } public byte[] SignData(System.IO.Stream inputStream) { throw null; } public byte[] SignHash(byte[] rgbHash, string str) { throw null; } public bool VerifyData(byte[] rgbData, byte[] rgbSignature) { throw null; } public bool VerifyHash(byte[] rgbHash, string str, byte[] rgbSignature) { throw null; } public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct DSAParameters { public int Counter; public byte[] G; public byte[] J; public byte[] P; public byte[] Q; public byte[] Seed; [System.NonSerializedAttribute] public byte[] X; public byte[] Y; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class DSASignatureDeformatter : System.Security.Cryptography.AsymmetricSignatureDeformatter { public DSASignatureDeformatter() { } public DSASignatureDeformatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override void SetHashAlgorithm(string strName) { } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class DSASignatureFormatter : System.Security.Cryptography.AsymmetricSignatureFormatter { public DSASignatureFormatter() { } public DSASignatureFormatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override byte[] CreateSignature(byte[] rgbHash) { throw null; } public override void SetHashAlgorithm(string strName) { } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class FromBase64Transform : System.IDisposable, System.Security.Cryptography.ICryptoTransform { public FromBase64Transform() { } public FromBase64Transform(System.Security.Cryptography.FromBase64TransformMode whitespaces) { } public virtual bool CanReuseTransform { get { throw null; } } public bool CanTransformMultipleBlocks { get { throw null; } } public int InputBlockSize { get { throw null; } } public int OutputBlockSize { get { throw null; } } public void Clear() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } ~FromBase64Transform() { } public int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) { throw null; } public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum FromBase64TransformMode { DoNotIgnoreWhiteSpaces = 1, IgnoreWhiteSpaces = 0, } public abstract partial class HashAlgorithm : System.IDisposable, System.Security.Cryptography.ICryptoTransform { protected int HashSizeValue; protected internal byte[] HashValue; protected int State; protected HashAlgorithm() { } public virtual bool CanReuseTransform { get { throw null; } } public virtual bool CanTransformMultipleBlocks { get { throw null; } } public virtual byte[] Hash { get { throw null; } } public virtual int HashSize { get { throw null; } } public virtual int InputBlockSize { get { throw null; } } public virtual int OutputBlockSize { get { throw null; } } public void Clear() { } public byte[] ComputeHash(byte[] buffer) { throw null; } public byte[] ComputeHash(byte[] buffer, int offset, int count) { throw null; } public byte[] ComputeHash(System.IO.Stream inputStream) { throw null; } public static System.Security.Cryptography.HashAlgorithm Create() { throw null; } public static System.Security.Cryptography.HashAlgorithm Create(string hashName) { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } protected abstract void HashCore(byte[] array, int ibStart, int cbSize); protected virtual void HashCore(System.ReadOnlySpan source) { } protected abstract byte[] HashFinal(); public abstract void Initialize(); public int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) { throw null; } public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) { throw null; } public bool TryComputeHash(System.ReadOnlySpan source, System.Span destination, out int bytesWritten) { throw null; } protected virtual bool TryHashFinal(System.Span destination, out int bytesWritten) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct HashAlgorithmName : System.IEquatable { private readonly object _dummy; public HashAlgorithmName(string name) { throw null; } public static System.Security.Cryptography.HashAlgorithmName MD5 { get { throw null; } } public string Name { get { throw null; } } public static System.Security.Cryptography.HashAlgorithmName SHA1 { get { throw null; } } public static System.Security.Cryptography.HashAlgorithmName SHA256 { get { throw null; } } public static System.Security.Cryptography.HashAlgorithmName SHA384 { get { throw null; } } public static System.Security.Cryptography.HashAlgorithmName SHA512 { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Security.Cryptography.HashAlgorithmName other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Security.Cryptography.HashAlgorithmName left, System.Security.Cryptography.HashAlgorithmName right) { throw null; } public static bool operator !=(System.Security.Cryptography.HashAlgorithmName left, System.Security.Cryptography.HashAlgorithmName right) { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class HMAC : System.Security.Cryptography.KeyedHashAlgorithm { protected HMAC() { } protected int BlockSizeValue { get { throw null; } set { } } public string HashName { get { throw null; } set { } } public override byte[] Key { get { throw null; } set { } } public static new System.Security.Cryptography.HMAC Create() { throw null; } public static new System.Security.Cryptography.HMAC Create(string algorithmName) { throw null; } protected override void Dispose(bool disposing) { } protected override void HashCore(byte[] rgb, int ib, int cb) { } protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class HMACMD5 : System.Security.Cryptography.HMAC { public HMACMD5() { } public HMACMD5(byte[] key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class HMACRIPEMD160 : System.Security.Cryptography.HMAC { public HMACRIPEMD160() { } public HMACRIPEMD160(byte[] key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class HMACSHA1 : System.Security.Cryptography.HMAC { public HMACSHA1() { } public HMACSHA1(byte[] key) { } public HMACSHA1(byte[] key, bool useManagedSha1) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class HMACSHA256 : System.Security.Cryptography.HMAC { public HMACSHA256() { } public HMACSHA256(byte[] key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class HMACSHA384 : System.Security.Cryptography.HMAC { public HMACSHA384() { } [System.Security.SecuritySafeCriticalAttribute] public HMACSHA384(byte[] key) { } public bool ProduceLegacyHmacValues { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class HMACSHA512 : System.Security.Cryptography.HMAC { public HMACSHA512() { } [System.Security.SecuritySafeCriticalAttribute] public HMACSHA512(byte[] key) { } public bool ProduceLegacyHmacValues { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface ICryptoTransform : System.IDisposable { bool CanReuseTransform { get; } bool CanTransformMultipleBlocks { get; } int InputBlockSize { get; } int OutputBlockSize { get; } int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset); byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount); } public partial interface ICspAsymmetricAlgorithm { System.Security.Cryptography.CspKeyContainerInfo CspKeyContainerInfo { get; } byte[] ExportCspBlob(bool includePrivateParameters); void ImportCspBlob(byte[] rawData); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class KeyedHashAlgorithm : System.Security.Cryptography.HashAlgorithm { protected byte[] KeyValue; protected KeyedHashAlgorithm() { } public virtual byte[] Key { get { throw null; } set { } } public static new System.Security.Cryptography.KeyedHashAlgorithm Create() { throw null; } public static new System.Security.Cryptography.KeyedHashAlgorithm Create(string algName) { throw null; } protected override void Dispose(bool disposing) { } } public enum KeyNumber { Exchange = 1, Signature = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class KeySizes { public KeySizes(int minSize, int maxSize, int skipSize) { } public int MaxSize { get { throw null; } } public int MinSize { get { throw null; } } public int SkipSize { get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class MACTripleDES : System.Security.Cryptography.KeyedHashAlgorithm { public MACTripleDES() { } public MACTripleDES(byte[] rgbKey) { } public MACTripleDES(string strTripleDES, byte[] rgbKey) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Cryptography.PaddingMode Padding { get { throw null; } set { } } protected override void Dispose(bool disposing) { } protected override void HashCore(byte[] rgbData, int ibStart, int cbSize) { } protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class MaskGenerationMethod { protected MaskGenerationMethod() { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract byte[] GenerateMask(byte[] rgbSeed, int cbReturn); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class MD5 : System.Security.Cryptography.HashAlgorithm { protected MD5() { } public static new System.Security.Cryptography.MD5 Create() { throw null; } public static new System.Security.Cryptography.MD5 Create(string algName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class MD5CryptoServiceProvider : System.Security.Cryptography.MD5 { public MD5CryptoServiceProvider() { } protected override void Dispose(bool disposing) { } ~MD5CryptoServiceProvider() { } protected override void HashCore(byte[] rgb, int ibStart, int cbSize) { } protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum PaddingMode { ANSIX923 = 4, ISO10126 = 5, None = 1, PKCS7 = 2, Zeros = 3, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class PasswordDeriveBytes : System.Security.Cryptography.DeriveBytes { public PasswordDeriveBytes(byte[] password, byte[] salt) { } public PasswordDeriveBytes(byte[] password, byte[] salt, System.Security.Cryptography.CspParameters cspParams) { } public PasswordDeriveBytes(byte[] password, byte[] salt, string hashName, int iterations) { } [System.Security.SecuritySafeCriticalAttribute] public PasswordDeriveBytes(byte[] password, byte[] salt, string hashName, int iterations, System.Security.Cryptography.CspParameters cspParams) { } public PasswordDeriveBytes(string strPassword, byte[] rgbSalt) { } public PasswordDeriveBytes(string strPassword, byte[] rgbSalt, System.Security.Cryptography.CspParameters cspParams) { } public PasswordDeriveBytes(string strPassword, byte[] rgbSalt, string strHashName, int iterations) { } public PasswordDeriveBytes(string strPassword, byte[] rgbSalt, string strHashName, int iterations, System.Security.Cryptography.CspParameters cspParams) { } public string HashName { get { throw null; } set { } } public int IterationCount { get { throw null; } set { } } public byte[] Salt { get { throw null; } set { } } [System.Security.SecuritySafeCriticalAttribute] public byte[] CryptDeriveKey(string algname, string alghashname, int keySize, byte[] rgbIV) { throw null; } protected override void Dispose(bool disposing) { } [System.ObsoleteAttribute("Rfc2898DeriveBytes replaces PasswordDeriveBytes for deriving key material from a password and is preferred in new applications.")] [System.Security.SecuritySafeCriticalAttribute] public override byte[] GetBytes(int cb) { throw null; } public override void Reset() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class PKCS1MaskGenerationMethod : System.Security.Cryptography.MaskGenerationMethod { public PKCS1MaskGenerationMethod() { } public string HashName { get { throw null; } set { } } public override byte[] GenerateMask(byte[] rgbSeed, int cbReturn) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class RandomNumberGenerator : System.IDisposable { protected RandomNumberGenerator() { } public static System.Security.Cryptography.RandomNumberGenerator Create() { throw null; } public static System.Security.Cryptography.RandomNumberGenerator Create(string rngName) { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public static void Fill(System.Span data) { } public abstract void GetBytes(byte[] data); public virtual void GetBytes(byte[] data, int offset, int count) { } public virtual void GetBytes(System.Span data) { } public virtual void GetNonZeroBytes(byte[] data) { } public virtual void GetNonZeroBytes(System.Span data) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class RC2 : System.Security.Cryptography.SymmetricAlgorithm { protected int EffectiveKeySizeValue; protected RC2() { } public virtual int EffectiveKeySize { get { throw null; } set { } } public override int KeySize { get { throw null; } set { } } public static new System.Security.Cryptography.RC2 Create() { throw null; } public static new System.Security.Cryptography.RC2 Create(string AlgName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class RC2CryptoServiceProvider : System.Security.Cryptography.RC2 { [System.Security.SecuritySafeCriticalAttribute] public RC2CryptoServiceProvider() { } public override int EffectiveKeySize { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool UseSalt { get { throw null; } set { } } [System.Security.SecuritySafeCriticalAttribute] public override System.Security.Cryptography.ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public override System.Security.Cryptography.ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } public override void GenerateIV() { } public override void GenerateKey() { } } public partial class Rfc2898DeriveBytes : System.Security.Cryptography.DeriveBytes { public Rfc2898DeriveBytes(byte[] password, byte[] salt, int iterations) { } public Rfc2898DeriveBytes(byte[] password, byte[] salt, int iterations, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { } public Rfc2898DeriveBytes(string password, byte[] salt) { } public Rfc2898DeriveBytes(string password, byte[] salt, int iterations) { } public Rfc2898DeriveBytes(string password, byte[] salt, int iterations, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { } public Rfc2898DeriveBytes(string password, int saltSize) { } public Rfc2898DeriveBytes(string password, int saltSize, int iterations) { } public Rfc2898DeriveBytes(string password, int saltSize, int iterations, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { } public System.Security.Cryptography.HashAlgorithmName HashAlgorithm { get { throw null; } } public int IterationCount { get { throw null; } set { } } public byte[] Salt { get { throw null; } set { } } public byte[] CryptDeriveKey(string algname, string alghashname, int keySize, byte[] rgbIV) { throw null; } protected override void Dispose(bool disposing) { } public override byte[] GetBytes(int cb) { throw null; } public override void Reset() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class Rijndael : System.Security.Cryptography.SymmetricAlgorithm { protected Rijndael() { } public static new System.Security.Cryptography.Rijndael Create() { throw null; } public static new System.Security.Cryptography.Rijndael Create(string algName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class RijndaelManaged : System.Security.Cryptography.Rijndael { public RijndaelManaged() { } public override System.Security.Cryptography.ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } public override System.Security.Cryptography.ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } public override void GenerateIV() { } public override void GenerateKey() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class RijndaelManagedTransform : System.IDisposable, System.Security.Cryptography.ICryptoTransform { internal RijndaelManagedTransform() { } public int BlockSizeValue { get { throw null; } } public bool CanReuseTransform { get { throw null; } } public bool CanTransformMultipleBlocks { get { throw null; } } public int InputBlockSize { get { throw null; } } public int OutputBlockSize { get { throw null; } } public void Clear() { } public void Dispose() { } public void Reset() { } public int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) { throw null; } public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class RIPEMD160 : System.Security.Cryptography.HashAlgorithm { protected RIPEMD160() { } public static new System.Security.Cryptography.RIPEMD160 Create() { throw null; } public static new System.Security.Cryptography.RIPEMD160 Create(string hashName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RIPEMD160Managed : System.Security.Cryptography.RIPEMD160 { public RIPEMD160Managed() { } [System.Security.SecuritySafeCriticalAttribute] protected override void HashCore(byte[] rgb, int ibStart, int cbSize) { } [System.Security.SecuritySafeCriticalAttribute] protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class RNGCryptoServiceProvider : System.Security.Cryptography.RandomNumberGenerator { public RNGCryptoServiceProvider() { } public RNGCryptoServiceProvider(byte[] rgb) { } public RNGCryptoServiceProvider(System.Security.Cryptography.CspParameters cspParams) { } public RNGCryptoServiceProvider(string str) { } protected override void Dispose(bool disposing) { } ~RNGCryptoServiceProvider() { } public override void GetBytes(byte[] data) { } public override void GetNonZeroBytes(byte[] data) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class RSA : System.Security.Cryptography.AsymmetricAlgorithm { protected RSA() { } public override string KeyExchangeAlgorithm { get { throw null; } } public override string SignatureAlgorithm { get { throw null; } } public static new System.Security.Cryptography.RSA Create() { throw null; } public static System.Security.Cryptography.RSA Create(int keySizeInBits) { throw null; } public static System.Security.Cryptography.RSA Create(System.Security.Cryptography.RSAParameters parameters) { throw null; } public static new System.Security.Cryptography.RSA Create(string algName) { throw null; } public virtual byte[] Decrypt(byte[] data, System.Security.Cryptography.RSAEncryptionPadding padding) { throw null; } public virtual byte[] DecryptValue(byte[] rgb) { throw null; } public virtual byte[] Encrypt(byte[] data, System.Security.Cryptography.RSAEncryptionPadding padding) { throw null; } public virtual byte[] EncryptValue(byte[] rgb) { throw null; } public abstract System.Security.Cryptography.RSAParameters ExportParameters(bool includePrivateParameters); public override void FromXmlString(string xmlString) { } protected virtual byte[] HashData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } protected virtual byte[] HashData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public abstract void ImportParameters(System.Security.Cryptography.RSAParameters parameters); public virtual byte[] SignData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public byte[] SignData(byte[] data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public virtual byte[] SignData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public virtual byte[] SignHash(byte[] hash, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public override string ToXmlString(bool includePrivateParameters) { throw null; } public virtual bool TryDecrypt(System.ReadOnlySpan data, System.Span destination, System.Security.Cryptography.RSAEncryptionPadding padding, out int bytesWritten) { throw null; } public virtual bool TryEncrypt(System.ReadOnlySpan data, System.Span destination, System.Security.Cryptography.RSAEncryptionPadding padding, out int bytesWritten) { throw null; } protected virtual bool TryHashData(System.ReadOnlySpan data, System.Span destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, out int bytesWritten) { throw null; } public virtual bool TrySignHash(System.ReadOnlySpan hash, System.Span destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding, out int bytesWritten) { throw null; } public bool VerifyData(byte[] data, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public virtual bool VerifyData(byte[] data, int offset, int count, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public bool VerifyData(System.IO.Stream data, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public virtual bool VerifyData(System.ReadOnlySpan data, System.ReadOnlySpan signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public virtual bool VerifyHash(byte[] hash, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public virtual bool VerifyHash(System.ReadOnlySpan hash, System.ReadOnlySpan signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class RSACryptoServiceProvider : System.Security.Cryptography.RSA, System.Security.Cryptography.ICspAsymmetricAlgorithm { public RSACryptoServiceProvider() { } public RSACryptoServiceProvider(int dwKeySize) { } public RSACryptoServiceProvider(int dwKeySize, System.Security.Cryptography.CspParameters parameters) { } public RSACryptoServiceProvider(System.Security.Cryptography.CspParameters parameters) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Cryptography.CspKeyContainerInfo CspKeyContainerInfo { get { throw null; } } public override string KeyExchangeAlgorithm { get { throw null; } } public override int KeySize { get { throw null; } } public bool PersistKeyInCsp { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool PublicOnly { get { throw null; } } public override string SignatureAlgorithm { get { throw null; } } public static bool UseMachineKeyStore { get { throw null; } set { } } public byte[] Decrypt(byte[] rgb, bool fOAEP) { throw null; } public override byte[] Decrypt(byte[] data, System.Security.Cryptography.RSAEncryptionPadding padding) { throw null; } public override byte[] DecryptValue(byte[] rgb) { throw null; } protected override void Dispose(bool disposing) { } public byte[] Encrypt(byte[] rgb, bool fOAEP) { throw null; } public override byte[] Encrypt(byte[] data, System.Security.Cryptography.RSAEncryptionPadding padding) { throw null; } public override byte[] EncryptValue(byte[] rgb) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public byte[] ExportCspBlob(bool includePrivateParameters) { throw null; } public override System.Security.Cryptography.RSAParameters ExportParameters(bool includePrivateParameters) { throw null; } ~RSACryptoServiceProvider() { } [System.Security.SecuritySafeCriticalAttribute] protected override byte[] HashData(byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } [System.Security.SecuritySafeCriticalAttribute] protected override byte[] HashData(System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void ImportCspBlob(byte[] keyBlob) { } public override void ImportParameters(System.Security.Cryptography.RSAParameters parameters) { } public byte[] SignData(byte[] buffer, int offset, int count, object halg) { throw null; } public byte[] SignData(byte[] buffer, object halg) { throw null; } public byte[] SignData(System.IO.Stream inputStream, object halg) { throw null; } public override byte[] SignHash(byte[] hash, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public byte[] SignHash(byte[] rgbHash, string str) { throw null; } public bool VerifyData(byte[] buffer, object halg, byte[] signature) { throw null; } public override bool VerifyHash(byte[] hash, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding) { throw null; } public bool VerifyHash(byte[] rgbHash, string str, byte[] rgbSignature) { throw null; } } public sealed partial class RSAEncryptionPadding : System.IEquatable { internal RSAEncryptionPadding() { } public System.Security.Cryptography.RSAEncryptionPaddingMode Mode { get { throw null; } } public System.Security.Cryptography.HashAlgorithmName OaepHashAlgorithm { get { throw null; } } public static System.Security.Cryptography.RSAEncryptionPadding OaepSHA1 { get { throw null; } } public static System.Security.Cryptography.RSAEncryptionPadding OaepSHA256 { get { throw null; } } public static System.Security.Cryptography.RSAEncryptionPadding OaepSHA384 { get { throw null; } } public static System.Security.Cryptography.RSAEncryptionPadding OaepSHA512 { get { throw null; } } public static System.Security.Cryptography.RSAEncryptionPadding Pkcs1 { get { throw null; } } public static System.Security.Cryptography.RSAEncryptionPadding CreateOaep(System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.Security.Cryptography.RSAEncryptionPadding other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Security.Cryptography.RSAEncryptionPadding left, System.Security.Cryptography.RSAEncryptionPadding right) { throw null; } public static bool operator !=(System.Security.Cryptography.RSAEncryptionPadding left, System.Security.Cryptography.RSAEncryptionPadding right) { throw null; } public override string ToString() { throw null; } } public enum RSAEncryptionPaddingMode { Oaep = 1, Pkcs1 = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RSAOAEPKeyExchangeDeformatter : System.Security.Cryptography.AsymmetricKeyExchangeDeformatter { public RSAOAEPKeyExchangeDeformatter() { } public RSAOAEPKeyExchangeDeformatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override string Parameters { get { throw null; } set { } } [System.Security.SecuritySafeCriticalAttribute] public override byte[] DecryptKeyExchange(byte[] rgbData) { throw null; } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RSAOAEPKeyExchangeFormatter : System.Security.Cryptography.AsymmetricKeyExchangeFormatter { public RSAOAEPKeyExchangeFormatter() { } public RSAOAEPKeyExchangeFormatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public byte[] Parameter { get { throw null; } set { } } public override string Parameters { get { throw null; } } public System.Security.Cryptography.RandomNumberGenerator Rng { get { throw null; } set { } } [System.Security.SecuritySafeCriticalAttribute] public override byte[] CreateKeyExchange(byte[] rgbData) { throw null; } public override byte[] CreateKeyExchange(byte[] rgbData, System.Type symAlgType) { throw null; } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct RSAParameters { [System.NonSerializedAttribute] public byte[] D; [System.NonSerializedAttribute] public byte[] DP; [System.NonSerializedAttribute] public byte[] DQ; public byte[] Exponent; [System.NonSerializedAttribute] public byte[] InverseQ; public byte[] Modulus; [System.NonSerializedAttribute] public byte[] P; [System.NonSerializedAttribute] public byte[] Q; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RSAPKCS1KeyExchangeDeformatter : System.Security.Cryptography.AsymmetricKeyExchangeDeformatter { public RSAPKCS1KeyExchangeDeformatter() { } public RSAPKCS1KeyExchangeDeformatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override string Parameters { get { throw null; } set { } } public System.Security.Cryptography.RandomNumberGenerator RNG { get { throw null; } set { } } public override byte[] DecryptKeyExchange(byte[] rgbIn) { throw null; } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RSAPKCS1KeyExchangeFormatter : System.Security.Cryptography.AsymmetricKeyExchangeFormatter { public RSAPKCS1KeyExchangeFormatter() { } public RSAPKCS1KeyExchangeFormatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override string Parameters { get { throw null; } } public System.Security.Cryptography.RandomNumberGenerator Rng { get { throw null; } set { } } public override byte[] CreateKeyExchange(byte[] rgbData) { throw null; } public override byte[] CreateKeyExchange(byte[] rgbData, System.Type symAlgType) { throw null; } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RSAPKCS1SignatureDeformatter : System.Security.Cryptography.AsymmetricSignatureDeformatter { public RSAPKCS1SignatureDeformatter() { } public RSAPKCS1SignatureDeformatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override void SetHashAlgorithm(string strName) { } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class RSAPKCS1SignatureFormatter : System.Security.Cryptography.AsymmetricSignatureFormatter { public RSAPKCS1SignatureFormatter() { } public RSAPKCS1SignatureFormatter(System.Security.Cryptography.AsymmetricAlgorithm key) { } public override byte[] CreateSignature(byte[] rgbHash) { throw null; } public override void SetHashAlgorithm(string strName) { } public override void SetKey(System.Security.Cryptography.AsymmetricAlgorithm key) { } } public sealed partial class RSASignaturePadding : System.IEquatable { internal RSASignaturePadding() { } public System.Security.Cryptography.RSASignaturePaddingMode Mode { get { throw null; } } public static System.Security.Cryptography.RSASignaturePadding Pkcs1 { get { throw null; } } public static System.Security.Cryptography.RSASignaturePadding Pss { get { throw null; } } public override bool Equals(object obj) { throw null; } public bool Equals(System.Security.Cryptography.RSASignaturePadding other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Security.Cryptography.RSASignaturePadding left, System.Security.Cryptography.RSASignaturePadding right) { throw null; } public static bool operator !=(System.Security.Cryptography.RSASignaturePadding left, System.Security.Cryptography.RSASignaturePadding right) { throw null; } public override string ToString() { throw null; } } public enum RSASignaturePaddingMode { Pkcs1 = 0, Pss = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class SHA1 : System.Security.Cryptography.HashAlgorithm { protected SHA1() { } public static new System.Security.Cryptography.SHA1 Create() { throw null; } public static new System.Security.Cryptography.SHA1 Create(string hashName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class SHA1CryptoServiceProvider : System.Security.Cryptography.SHA1 { public SHA1CryptoServiceProvider() { } protected override void Dispose(bool disposing) { } ~SHA1CryptoServiceProvider() { } protected override void HashCore(byte[] rgb, int ibStart, int cbSize) { } protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SHA1Managed : System.Security.Cryptography.SHA1 { public SHA1Managed() { } protected override void HashCore(byte[] rgb, int ibStart, int cbSize) { } protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class SHA256 : System.Security.Cryptography.HashAlgorithm { protected SHA256() { } public static new System.Security.Cryptography.SHA256 Create() { throw null; } public static new System.Security.Cryptography.SHA256 Create(string hashName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SHA256Managed : System.Security.Cryptography.SHA256 { public SHA256Managed() { } protected override void HashCore(byte[] rgb, int ibStart, int cbSize) { } protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class SHA384 : System.Security.Cryptography.HashAlgorithm { protected SHA384() { } public static new System.Security.Cryptography.SHA384 Create() { throw null; } public static new System.Security.Cryptography.SHA384 Create(string hashName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SHA384Managed : System.Security.Cryptography.SHA384 { public SHA384Managed() { } [System.Security.SecuritySafeCriticalAttribute] protected override void HashCore(byte[] rgb, int ibStart, int cbSize) { } [System.Security.SecuritySafeCriticalAttribute] protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class SHA512 : System.Security.Cryptography.HashAlgorithm { protected SHA512() { } public static new System.Security.Cryptography.SHA512 Create() { throw null; } public static new System.Security.Cryptography.SHA512 Create(string hashName) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SHA512Managed : System.Security.Cryptography.SHA512 { public SHA512Managed() { } [System.Security.SecuritySafeCriticalAttribute] protected override void HashCore(byte[] rgb, int ibStart, int cbSize) { } [System.Security.SecuritySafeCriticalAttribute] protected override byte[] HashFinal() { throw null; } public override void Initialize() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class SignatureDescription { public SignatureDescription() { } public SignatureDescription(System.Security.SecurityElement el) { } public string DeformatterAlgorithm { get { throw null; } set { } } public string DigestAlgorithm { get { throw null; } set { } } public string FormatterAlgorithm { get { throw null; } set { } } public string KeyAlgorithm { get { throw null; } set { } } public virtual System.Security.Cryptography.AsymmetricSignatureDeformatter CreateDeformatter(System.Security.Cryptography.AsymmetricAlgorithm key) { throw null; } public virtual System.Security.Cryptography.HashAlgorithm CreateDigest() { throw null; } public virtual System.Security.Cryptography.AsymmetricSignatureFormatter CreateFormatter(System.Security.Cryptography.AsymmetricAlgorithm key) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class SymmetricAlgorithm : System.IDisposable { protected int BlockSizeValue; protected int FeedbackSizeValue; protected byte[] IVValue; protected int KeySizeValue; protected byte[] KeyValue; protected System.Security.Cryptography.KeySizes[] LegalBlockSizesValue; protected System.Security.Cryptography.KeySizes[] LegalKeySizesValue; protected System.Security.Cryptography.CipherMode ModeValue; protected System.Security.Cryptography.PaddingMode PaddingValue; protected SymmetricAlgorithm() { } public virtual int BlockSize { get { throw null; } set { } } public virtual int FeedbackSize { get { throw null; } set { } } public virtual byte[] IV { get { throw null; } set { } } public virtual byte[] Key { get { throw null; } set { } } public virtual int KeySize { get { throw null; } set { } } public virtual System.Security.Cryptography.KeySizes[] LegalBlockSizes { get { throw null; } } public virtual System.Security.Cryptography.KeySizes[] LegalKeySizes { get { throw null; } } public virtual System.Security.Cryptography.CipherMode Mode { get { throw null; } set { } } public virtual System.Security.Cryptography.PaddingMode Padding { get { throw null; } set { } } public void Clear() { } public static System.Security.Cryptography.SymmetricAlgorithm Create() { throw null; } public static System.Security.Cryptography.SymmetricAlgorithm Create(string algName) { throw null; } public virtual System.Security.Cryptography.ICryptoTransform CreateDecryptor() { throw null; } public abstract System.Security.Cryptography.ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV); public virtual System.Security.Cryptography.ICryptoTransform CreateEncryptor() { throw null; } public abstract System.Security.Cryptography.ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV); public void Dispose() { } protected virtual void Dispose(bool disposing) { } public abstract void GenerateIV(); public abstract void GenerateKey(); public bool ValidKeySize(int bitLength) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class ToBase64Transform : System.IDisposable, System.Security.Cryptography.ICryptoTransform { public ToBase64Transform() { } public virtual bool CanReuseTransform { get { throw null; } } public bool CanTransformMultipleBlocks { get { throw null; } } public int InputBlockSize { get { throw null; } } public int OutputBlockSize { get { throw null; } } public void Clear() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } ~ToBase64Transform() { } public int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) { throw null; } public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public abstract partial class TripleDES : System.Security.Cryptography.SymmetricAlgorithm { protected TripleDES() { } public override byte[] Key { get { throw null; } set { } } public static new System.Security.Cryptography.TripleDES Create() { throw null; } public static new System.Security.Cryptography.TripleDES Create(string str) { throw null; } public static bool IsWeakKey(byte[] rgbKey) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class TripleDESCryptoServiceProvider : System.Security.Cryptography.TripleDES { [System.Security.SecuritySafeCriticalAttribute] public TripleDESCryptoServiceProvider() { } [System.Security.SecuritySafeCriticalAttribute] public override System.Security.Cryptography.ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public override System.Security.Cryptography.ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) { throw null; } public override void GenerateIV() { } public override void GenerateKey() { } } } namespace System.Security.Cryptography.X509Certificates { [System.SerializableAttribute] public partial class X509Certificate : System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable { public X509Certificate() { } public X509Certificate(byte[] data) { } [System.CLSCompliantAttribute(false)] public X509Certificate(byte[] rawData, System.Security.SecureString password) { } [System.CLSCompliantAttribute(false)] public X509Certificate(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } public X509Certificate(byte[] rawData, string password) { } public X509Certificate(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } public X509Certificate(System.IntPtr handle) { } public X509Certificate(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public X509Certificate(System.Security.Cryptography.X509Certificates.X509Certificate cert) { } public X509Certificate(string fileName) { } [System.CLSCompliantAttribute(false)] public X509Certificate(string fileName, System.Security.SecureString password) { } [System.CLSCompliantAttribute(false)] public X509Certificate(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } public X509Certificate(string fileName, string password) { } public X509Certificate(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } public System.IntPtr Handle { get { throw null; } } public string Issuer { get { throw null; } } public string Subject { get { throw null; } } public static System.Security.Cryptography.X509Certificates.X509Certificate CreateFromCertFile(string filename) { throw null; } public static System.Security.Cryptography.X509Certificates.X509Certificate CreateFromSignedFile(string filename) { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public override bool Equals(object obj) { throw null; } public virtual bool Equals(System.Security.Cryptography.X509Certificates.X509Certificate other) { throw null; } public virtual byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType) { throw null; } [System.CLSCompliantAttribute(false)] public virtual byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, System.Security.SecureString password) { throw null; } public virtual byte[] Export(System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password) { throw null; } protected static string FormatDate(System.DateTime date) { throw null; } public virtual byte[] GetCertHash() { throw null; } public virtual byte[] GetCertHash(System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public virtual string GetCertHashString() { throw null; } public virtual string GetCertHashString(System.Security.Cryptography.HashAlgorithmName hashAlgorithm) { throw null; } public virtual string GetEffectiveDateString() { throw null; } public virtual string GetExpirationDateString() { throw null; } public virtual string GetFormat() { throw null; } public override int GetHashCode() { throw null; } [System.ObsoleteAttribute("This method has been deprecated. Please use the Issuer property instead. http://go.microsoft.com/fwlink/?linkid=14202")] public virtual string GetIssuerName() { throw null; } public virtual string GetKeyAlgorithm() { throw null; } public virtual byte[] GetKeyAlgorithmParameters() { throw null; } public virtual string GetKeyAlgorithmParametersString() { throw null; } [System.ObsoleteAttribute("This method has been deprecated. Please use the Subject property instead. http://go.microsoft.com/fwlink/?linkid=14202")] public virtual string GetName() { throw null; } public virtual byte[] GetPublicKey() { throw null; } public virtual string GetPublicKeyString() { throw null; } public virtual byte[] GetRawCertData() { throw null; } public virtual string GetRawCertDataString() { throw null; } public virtual byte[] GetSerialNumber() { throw null; } public virtual string GetSerialNumberString() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual void Import(byte[] rawData) { } public virtual void Import(byte[] rawData, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual void Import(byte[] rawData, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual void Import(string fileName) { } public virtual void Import(string fileName, System.Security.SecureString password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual void Import(string fileName, string password, System.Security.Cryptography.X509Certificates.X509KeyStorageFlags keyStorageFlags) { } public virtual void Reset() { } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } public virtual string ToString(bool fVerbose) { throw null; } public virtual bool TryGetCertHash(System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Span destination, out int bytesWritten) { throw null; } } public enum X509ContentType { Authenticode = 6, Cert = 1, Pfx = 3, Pkcs12 = 3, Pkcs7 = 5, SerializedCert = 2, SerializedStore = 4, Unknown = 0, } [System.FlagsAttribute] public enum X509KeyStorageFlags { DefaultKeySet = 0, EphemeralKeySet = 32, Exportable = 4, MachineKeySet = 2, PersistKeySet = 16, UserKeySet = 1, UserProtected = 8, } } namespace System.Security.Permissions { [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class CodeAccessSecurityAttribute : System.Security.Permissions.SecurityAttribute { protected CodeAccessSecurityAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class EnvironmentPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { public EnvironmentPermission(System.Security.Permissions.EnvironmentPermissionAccess flag, string pathList) { } public EnvironmentPermission(System.Security.Permissions.PermissionState state) { } public void AddPathList(System.Security.Permissions.EnvironmentPermissionAccess flag, string pathList) { } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public string GetPathList(System.Security.Permissions.EnvironmentPermissionAccess flag) { throw null; } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public void SetPathList(System.Security.Permissions.EnvironmentPermissionAccess flag, string pathList) { } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission other) { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum EnvironmentPermissionAccess { AllAccess = 3, NoAccess = 0, Read = 1, Write = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class EnvironmentPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public EnvironmentPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public string All { get { throw null; } set { } } public string Read { get { throw null; } set { } } public string Write { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class FileDialogPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { public FileDialogPermission(System.Security.Permissions.FileDialogPermissionAccess access) { } public FileDialogPermission(System.Security.Permissions.PermissionState state) { } public System.Security.Permissions.FileDialogPermissionAccess Access { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.FlagsAttribute] public enum FileDialogPermissionAccess { None = 0, Open = 1, OpenSave = 3, Save = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class FileDialogPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public FileDialogPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public bool Open { get { throw null; } set { } } public bool Save { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class FileIOPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { [System.MonoTODOAttribute("(2.0) Access Control isn't implemented")] public FileIOPermission(System.Security.Permissions.FileIOPermissionAccess access, System.Security.AccessControl.AccessControlActions control, string path) { } [System.MonoTODOAttribute("(2.0) Access Control isn't implemented")] public FileIOPermission(System.Security.Permissions.FileIOPermissionAccess access, System.Security.AccessControl.AccessControlActions control, string[] pathList) { } public FileIOPermission(System.Security.Permissions.FileIOPermissionAccess access, string path) { } public FileIOPermission(System.Security.Permissions.FileIOPermissionAccess access, string[] pathList) { } public FileIOPermission(System.Security.Permissions.PermissionState state) { } public System.Security.Permissions.FileIOPermissionAccess AllFiles { get { throw null; } set { } } public System.Security.Permissions.FileIOPermissionAccess AllLocalFiles { get { throw null; } set { } } public void AddPathList(System.Security.Permissions.FileIOPermissionAccess access, string path) { } public void AddPathList(System.Security.Permissions.FileIOPermissionAccess access, string[] pathList) { } public override System.Security.IPermission Copy() { throw null; } [System.MonoTODOAttribute("(2.0)")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool Equals(object obj) { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } [System.MonoTODOAttribute("(2.0)")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public string[] GetPathList(System.Security.Permissions.FileIOPermissionAccess access) { throw null; } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public void SetPathList(System.Security.Permissions.FileIOPermissionAccess access, string path) { } public void SetPathList(System.Security.Permissions.FileIOPermissionAccess access, string[] pathList) { } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission other) { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum FileIOPermissionAccess { AllAccess = 15, Append = 4, NoAccess = 0, PathDiscovery = 8, Read = 1, Write = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class FileIOPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public FileIOPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } [System.ObsoleteAttribute("use newer properties")] public string All { get { throw null; } set { } } public System.Security.Permissions.FileIOPermissionAccess AllFiles { get { throw null; } set { } } public System.Security.Permissions.FileIOPermissionAccess AllLocalFiles { get { throw null; } set { } } public string Append { get { throw null; } set { } } public string ChangeAccessControl { get { throw null; } set { } } public string PathDiscovery { get { throw null; } set { } } public string Read { get { throw null; } set { } } public string ViewAccessControl { get { throw null; } set { } } public string ViewAndModify { get { throw null; } set { } } public string Write { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class GacIdentityPermission : System.Security.CodeAccessPermission { public GacIdentityPermission() { } public GacIdentityPermission(System.Security.Permissions.PermissionState state) { } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement securityElement) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class GacIdentityPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public GacIdentityPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public override System.Security.IPermission CreatePermission() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Delegate | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class HostProtectionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public HostProtectionAttribute() : base (default(System.Security.Permissions.SecurityAction)) { } public HostProtectionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public bool ExternalProcessMgmt { get { throw null; } set { } } public bool ExternalThreading { get { throw null; } set { } } public bool MayLeakOnAbort { get { throw null; } set { } } public System.Security.Permissions.HostProtectionResource Resources { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public bool SecurityInfrastructure { get { throw null; } set { } } public bool SelfAffectingProcessMgmt { get { throw null; } set { } } public bool SelfAffectingThreading { get { throw null; } set { } } public bool SharedState { get { throw null; } set { } } public bool Synchronization { get { throw null; } set { } } public bool UI { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.FlagsAttribute] public enum HostProtectionResource { All = 511, ExternalProcessMgmt = 4, ExternalThreading = 16, MayLeakOnAbort = 256, None = 0, SecurityInfrastructure = 64, SelfAffectingProcessMgmt = 8, SelfAffectingThreading = 32, SharedState = 2, Synchronization = 1, UI = 128, } public enum IsolatedStorageContainment { AdministerIsolatedStorageByUser = 112, ApplicationIsolationByMachine = 69, ApplicationIsolationByRoamingUser = 101, ApplicationIsolationByUser = 21, AssemblyIsolationByMachine = 64, AssemblyIsolationByRoamingUser = 96, AssemblyIsolationByUser = 32, DomainIsolationByMachine = 48, DomainIsolationByRoamingUser = 80, DomainIsolationByUser = 16, None = 0, UnrestrictedIsolatedStorage = 240, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class IsolatedStorageFilePermission : System.Security.Permissions.IsolatedStoragePermission { public IsolatedStorageFilePermission(System.Security.Permissions.PermissionState state) : base (default(System.Security.Permissions.PermissionState)) { } public override System.Security.IPermission Copy() { throw null; } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } [System.MonoTODOAttribute("(2.0) new override - something must have been added ???")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class IsolatedStorageFilePermissionAttribute : System.Security.Permissions.IsolatedStoragePermissionAttribute { public IsolatedStorageFilePermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, ControlEvidence=true, ControlPolicy=true)] [System.SerializableAttribute] public abstract partial class IsolatedStoragePermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { protected IsolatedStoragePermission(System.Security.Permissions.PermissionState state) { } public System.Security.Permissions.IsolatedStorageContainment UsageAllowed { get { throw null; } set { } } public long UserQuota { get { throw null; } set { } } public override void FromXml(System.Security.SecurityElement esd) { } public bool IsUnrestricted() { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class IsolatedStoragePermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { protected IsolatedStoragePermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public System.Security.Permissions.IsolatedStorageContainment UsageAllowed { get { throw null; } set { } } public long UserQuota { get { throw null; } set { } } } public partial interface IUnrestrictedPermission { bool IsUnrestricted(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class KeyContainerPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { public KeyContainerPermission(System.Security.Permissions.KeyContainerPermissionFlags flags) { } public KeyContainerPermission(System.Security.Permissions.KeyContainerPermissionFlags flags, System.Security.Permissions.KeyContainerPermissionAccessEntry[] accessList) { } public KeyContainerPermission(System.Security.Permissions.PermissionState state) { } public System.Security.Permissions.KeyContainerPermissionAccessEntryCollection AccessEntries { get { throw null; } } public System.Security.Permissions.KeyContainerPermissionFlags Flags { get { throw null; } } public override System.Security.IPermission Copy() { throw null; } [System.MonoTODOAttribute("(2.0) missing support for AccessEntries")] public override void FromXml(System.Security.SecurityElement securityElement) { } [System.MonoTODOAttribute("(2.0)")] public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } [System.MonoTODOAttribute("(2.0)")] public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } [System.MonoTODOAttribute("(2.0) missing support for AccessEntries")] public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class KeyContainerPermissionAccessEntry { public KeyContainerPermissionAccessEntry(System.Security.Cryptography.CspParameters parameters, System.Security.Permissions.KeyContainerPermissionFlags flags) { } public KeyContainerPermissionAccessEntry(string keyContainerName, System.Security.Permissions.KeyContainerPermissionFlags flags) { } public KeyContainerPermissionAccessEntry(string keyStore, string providerName, int providerType, string keyContainerName, int keySpec, System.Security.Permissions.KeyContainerPermissionFlags flags) { } public System.Security.Permissions.KeyContainerPermissionFlags Flags { get { throw null; } set { } } public string KeyContainerName { get { throw null; } set { } } public int KeySpec { get { throw null; } set { } } public string KeyStore { get { throw null; } set { } } public string ProviderName { get { throw null; } set { } } public int ProviderType { get { throw null; } set { } } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class KeyContainerPermissionAccessEntryCollection : System.Collections.ICollection, System.Collections.IEnumerable { internal KeyContainerPermissionAccessEntryCollection() { } public int Count { get { throw null; } } public bool IsSynchronized { get { throw null; } } public System.Security.Permissions.KeyContainerPermissionAccessEntry this[int index] { get { throw null; } } public object SyncRoot { get { throw null; } } public int Add(System.Security.Permissions.KeyContainerPermissionAccessEntry accessEntry) { throw null; } public void Clear() { } public void CopyTo(System.Security.Permissions.KeyContainerPermissionAccessEntry[] array, int index) { } public System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator GetEnumerator() { throw null; } public int IndexOf(System.Security.Permissions.KeyContainerPermissionAccessEntry accessEntry) { throw null; } public void Remove(System.Security.Permissions.KeyContainerPermissionAccessEntry accessEntry) { } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class KeyContainerPermissionAccessEntryEnumerator : System.Collections.IEnumerator { internal KeyContainerPermissionAccessEntryEnumerator() { } public System.Security.Permissions.KeyContainerPermissionAccessEntry Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public bool MoveNext() { throw null; } public void Reset() { } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class KeyContainerPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public KeyContainerPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public System.Security.Permissions.KeyContainerPermissionFlags Flags { get { throw null; } set { } } public string KeyContainerName { get { throw null; } set { } } public int KeySpec { get { throw null; } set { } } public string KeyStore { get { throw null; } set { } } public string ProviderName { get { throw null; } set { } } public int ProviderType { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum KeyContainerPermissionFlags { AllFlags = 13111, ChangeAcl = 8192, Create = 1, Decrypt = 512, Delete = 4, Export = 32, Import = 16, NoFlags = 0, Open = 2, Sign = 256, ViewAcl = 4096, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PermissionSetAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public PermissionSetAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public string File { get { throw null; } set { } } public string Hex { get { throw null; } set { } } public string Name { get { throw null; } set { } } public bool UnicodeEncoded { get { throw null; } set { } } public string XML { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } public System.Security.PermissionSet CreatePermissionSet() { throw null; } } public enum PermissionState { None = 0, Unrestricted = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PrincipalPermission : System.Security.IPermission, System.Security.ISecurityEncodable, System.Security.Permissions.IUnrestrictedPermission { public PrincipalPermission(System.Security.Permissions.PermissionState state) { } public PrincipalPermission(string name, string role) { } public PrincipalPermission(string name, string role, bool isAuthenticated) { } public System.Security.IPermission Copy() { throw null; } public void Demand() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool Equals(object obj) { throw null; } public void FromXml(System.Security.SecurityElement elem) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.IPermission Union(System.Security.IPermission other) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PrincipalPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public PrincipalPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public bool Authenticated { get { throw null; } set { } } public string Name { get { throw null; } set { } } public string Role { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PublisherIdentityPermission : System.Security.CodeAccessPermission { public PublisherIdentityPermission(System.Security.Cryptography.X509Certificates.X509Certificate certificate) { } public PublisherIdentityPermission(System.Security.Permissions.PermissionState state) { } public System.Security.Cryptography.X509Certificates.X509Certificate Certificate { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PublisherIdentityPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public PublisherIdentityPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public string CertFile { get { throw null; } set { } } public string SignedFile { get { throw null; } set { } } public string X509Certificate { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ReflectionPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { public ReflectionPermission(System.Security.Permissions.PermissionState state) { } public ReflectionPermission(System.Security.Permissions.ReflectionPermissionFlag flag) { } public System.Security.Permissions.ReflectionPermissionFlag Flags { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission other) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ReflectionPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public ReflectionPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public System.Security.Permissions.ReflectionPermissionFlag Flags { get { throw null; } set { } } public bool MemberAccess { get { throw null; } set { } } [System.ObsoleteAttribute] public bool ReflectionEmit { get { throw null; } set { } } public bool RestrictedMemberAccess { get { throw null; } set { } } [System.ObsoleteAttribute("not enforced in 2.0+")] public bool TypeInformation { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.FlagsAttribute] public enum ReflectionPermissionFlag { [System.ObsoleteAttribute("This permission has been deprecated. Use PermissionState.Unrestricted to get full access.")] AllFlags = 7, MemberAccess = 2, NoFlags = 0, [System.ObsoleteAttribute("This permission is no longer used by the CLR.")] ReflectionEmit = 4, RestrictedMemberAccess = 8, [System.ObsoleteAttribute("This API has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")] TypeInformation = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class RegistryPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { public RegistryPermission(System.Security.Permissions.PermissionState state) { } public RegistryPermission(System.Security.Permissions.RegistryPermissionAccess access, System.Security.AccessControl.AccessControlActions control, string pathList) { } public RegistryPermission(System.Security.Permissions.RegistryPermissionAccess access, string pathList) { } [System.MonoTODOAttribute("(2.0) Access Control isn't implemented")] public void AddPathList(System.Security.Permissions.RegistryPermissionAccess access, System.Security.AccessControl.AccessControlActions control, string pathList) { } public void AddPathList(System.Security.Permissions.RegistryPermissionAccess access, string pathList) { } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public string GetPathList(System.Security.Permissions.RegistryPermissionAccess access) { throw null; } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public void SetPathList(System.Security.Permissions.RegistryPermissionAccess access, string pathList) { } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission other) { throw null; } } [System.FlagsAttribute] public enum RegistryPermissionAccess { AllAccess = 7, Create = 4, NoAccess = 0, Read = 1, Write = 2, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class RegistryPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public RegistryPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } [System.ObsoleteAttribute("use newer properties")] public string All { get { throw null; } set { } } public string ChangeAccessControl { get { throw null; } set { } } public string Create { get { throw null; } set { } } public string Read { get { throw null; } set { } } public string ViewAccessControl { get { throw null; } set { } } public string ViewAndModify { get { throw null; } set { } } public string Write { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum SecurityAction { Assert = 3, Demand = 2, [System.ObsoleteAttribute("This requests should not be used")] Deny = 4, InheritanceDemand = 7, LinkDemand = 6, PermitOnly = 5, [System.ObsoleteAttribute("This requests should not be used")] RequestMinimum = 8, [System.ObsoleteAttribute("This requests should not be used")] RequestOptional = 9, [System.ObsoleteAttribute("This requests should not be used")] RequestRefuse = 10, } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class SecurityAttribute : System.Attribute { protected SecurityAttribute(System.Security.Permissions.SecurityAction action) { } public System.Security.Permissions.SecurityAction Action { get { throw null; } set { } } public bool Unrestricted { get { throw null; } set { } } public abstract System.Security.IPermission CreatePermission(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SecurityPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { public SecurityPermission(System.Security.Permissions.PermissionState state) { } public SecurityPermission(System.Security.Permissions.SecurityPermissionFlag flag) { } public System.Security.Permissions.SecurityPermissionFlag Flags { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SecurityPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public SecurityPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public bool Assertion { get { throw null; } set { } } public bool BindingRedirects { get { throw null; } set { } } public bool ControlAppDomain { get { throw null; } set { } } public bool ControlDomainPolicy { get { throw null; } set { } } public bool ControlEvidence { get { throw null; } set { } } public bool ControlPolicy { get { throw null; } set { } } public bool ControlPrincipal { get { throw null; } set { } } public bool ControlThread { get { throw null; } set { } } public bool Execution { get { throw null; } set { } } public System.Security.Permissions.SecurityPermissionFlag Flags { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public bool Infrastructure { get { throw null; } set { } } public bool RemotingConfiguration { get { throw null; } set { } } public bool SerializationFormatter { get { throw null; } set { } } public bool SkipVerification { get { throw null; } set { } } public bool UnmanagedCode { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.FlagsAttribute] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum SecurityPermissionFlag { AllFlags = 16383, Assertion = 1, BindingRedirects = 8192, ControlAppDomain = 1024, ControlDomainPolicy = 256, ControlEvidence = 32, ControlPolicy = 64, ControlPrincipal = 512, ControlThread = 16, Execution = 8, Infrastructure = 4096, NoFlags = 0, RemotingConfiguration = 2048, SerializationFormatter = 128, SkipVerification = 4, UnmanagedCode = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SiteIdentityPermission : System.Security.CodeAccessPermission { public SiteIdentityPermission(System.Security.Permissions.PermissionState state) { } public SiteIdentityPermission(string site) { } public string Site { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SiteIdentityPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public SiteIdentityPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public string Site { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class StrongNameIdentityPermission : System.Security.CodeAccessPermission { public StrongNameIdentityPermission(System.Security.Permissions.PermissionState state) { } public StrongNameIdentityPermission(System.Security.Permissions.StrongNamePublicKeyBlob blob, string name, System.Version version) { } public string Name { get { throw null; } set { } } public System.Security.Permissions.StrongNamePublicKeyBlob PublicKey { get { throw null; } set { } } public System.Version Version { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement e) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class StrongNameIdentityPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public StrongNameIdentityPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public string Name { get { throw null; } set { } } public string PublicKey { get { throw null; } set { } } public string Version { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class StrongNamePublicKeyBlob { public StrongNamePublicKeyBlob(byte[] publicKey) { } public override bool Equals(object obj) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class UIPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission { public UIPermission(System.Security.Permissions.PermissionState state) { } public UIPermission(System.Security.Permissions.UIPermissionClipboard clipboardFlag) { } public UIPermission(System.Security.Permissions.UIPermissionWindow windowFlag) { } public UIPermission(System.Security.Permissions.UIPermissionWindow windowFlag, System.Security.Permissions.UIPermissionClipboard clipboardFlag) { } public System.Security.Permissions.UIPermissionClipboard Clipboard { get { throw null; } set { } } public System.Security.Permissions.UIPermissionWindow Window { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public bool IsUnrestricted() { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class UIPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public UIPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public System.Security.Permissions.UIPermissionClipboard Clipboard { get { throw null; } set { } } public System.Security.Permissions.UIPermissionWindow Window { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } public enum UIPermissionClipboard { AllClipboard = 2, NoClipboard = 0, OwnClipboard = 1, } public enum UIPermissionWindow { AllWindows = 3, NoWindows = 0, SafeSubWindows = 1, SafeTopLevelWindows = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class UrlIdentityPermission : System.Security.CodeAccessPermission { public UrlIdentityPermission(System.Security.Permissions.PermissionState state) { } public UrlIdentityPermission(string site) { } public string Url { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class UrlIdentityPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public UrlIdentityPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public string Url { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ZoneIdentityPermission : System.Security.CodeAccessPermission { public ZoneIdentityPermission(System.Security.Permissions.PermissionState state) { } public ZoneIdentityPermission(System.Security.SecurityZone zone) { } public System.Security.SecurityZone SecurityZone { get { throw null; } set { } } public override System.Security.IPermission Copy() { throw null; } public override void FromXml(System.Security.SecurityElement esd) { } public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; } public override bool IsSubsetOf(System.Security.IPermission target) { throw null; } public override System.Security.SecurityElement ToXml() { throw null; } public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; } } [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Constructor | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true, Inherited=false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ZoneIdentityPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute { public ZoneIdentityPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { } public System.Security.SecurityZone Zone { get { throw null; } set { } } public override System.Security.IPermission CreatePermission() { throw null; } } } namespace System.Security.Policy { [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class AllMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public AllMembershipCondition() { } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ApplicationDirectory : System.Security.Policy.EvidenceBase { public ApplicationDirectory(string name) { } public string Directory { get { throw null; } } public object Copy() { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ApplicationDirectoryMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public ApplicationDirectoryMembershipCondition() { } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ApplicationSecurityInfo { public ApplicationSecurityInfo(System.ActivationContext activationContext) { } public System.Security.Policy.Evidence ApplicationEvidence { get { throw null; } set { } } public System.ApplicationId ApplicationId { get { throw null; } set { } } public System.Security.PermissionSet DefaultRequestSet { get { throw null; } set { } } public System.ApplicationId DeploymentId { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public static partial class ApplicationSecurityManager { public static System.Security.Policy.IApplicationTrustManager ApplicationTrustManager { [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true)]get { throw null; } } public static System.Security.Policy.ApplicationTrustCollection UserApplicationTrusts { get { throw null; } } [System.MonoTODOAttribute("Missing application manifest support")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPolicy=true, ControlEvidence=true)] public static bool DetermineApplicationTrust(System.ActivationContext activationContext, System.Security.Policy.TrustManagerContext context) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ApplicationTrust : System.Security.Policy.EvidenceBase, System.Security.ISecurityEncodable { public ApplicationTrust() { } public ApplicationTrust(System.ApplicationIdentity applicationIdentity) { } public ApplicationTrust(System.Security.PermissionSet defaultGrantSet, System.Collections.Generic.IEnumerable fullTrustAssemblies) { } public System.ApplicationIdentity ApplicationIdentity { get { throw null; } set { } } public System.Security.Policy.PolicyStatement DefaultGrantSet { get { throw null; } set { } } public object ExtraInfo { get { throw null; } set { } } public System.Collections.Generic.IList FullTrustAssemblies { get { throw null; } } public bool IsApplicationTrustedToRun { get { throw null; } set { } } public bool Persist { get { throw null; } set { } } public void FromXml(System.Security.SecurityElement element) { } public System.Security.SecurityElement ToXml() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ApplicationTrustCollection : System.Collections.ICollection, System.Collections.IEnumerable { internal ApplicationTrustCollection() { } public int Count { get { throw null; } } public bool IsSynchronized { get { throw null; } } public System.Security.Policy.ApplicationTrust this[int index] { get { throw null; } } public System.Security.Policy.ApplicationTrust this[string appFullName] { get { throw null; } } public object SyncRoot { get { throw null; } } public int Add(System.Security.Policy.ApplicationTrust trust) { throw null; } public void AddRange(System.Security.Policy.ApplicationTrustCollection trusts) { } public void AddRange(System.Security.Policy.ApplicationTrust[] trusts) { } public void Clear() { } public void CopyTo(System.Security.Policy.ApplicationTrust[] array, int index) { } public System.Security.Policy.ApplicationTrustCollection Find(System.ApplicationIdentity applicationIdentity, System.Security.Policy.ApplicationVersionMatch versionMatch) { throw null; } public System.Security.Policy.ApplicationTrustEnumerator GetEnumerator() { throw null; } public void Remove(System.ApplicationIdentity applicationIdentity, System.Security.Policy.ApplicationVersionMatch versionMatch) { } public void Remove(System.Security.Policy.ApplicationTrust trust) { } public void RemoveRange(System.Security.Policy.ApplicationTrustCollection trusts) { } public void RemoveRange(System.Security.Policy.ApplicationTrust[] trusts) { } void System.Collections.ICollection.CopyTo(System.Array array, int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ApplicationTrustEnumerator : System.Collections.IEnumerator { internal ApplicationTrustEnumerator() { } public System.Security.Policy.ApplicationTrust Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public bool MoveNext() { throw null; } public void Reset() { } } public enum ApplicationVersionMatch { MatchAllVersions = 1, MatchExactVersion = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class CodeConnectAccess { public static readonly string AnyScheme; public static readonly int DefaultPort; public static readonly int OriginPort; public static readonly string OriginScheme; [System.MonoTODOAttribute("(2.0) validations incomplete")] public CodeConnectAccess(string allowScheme, int allowPort) { } public int Port { get { throw null; } } public string Scheme { get { throw null; } } public static System.Security.Policy.CodeConnectAccess CreateAnySchemeAccess(int allowPort) { throw null; } public static System.Security.Policy.CodeConnectAccess CreateOriginSchemeAccess(int allowPort) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class CodeGroup { protected CodeGroup(System.Security.Policy.IMembershipCondition membershipCondition, System.Security.Policy.PolicyStatement policy) { } public virtual string AttributeString { get { throw null; } } public System.Collections.IList Children { get { throw null; } set { } } public string Description { get { throw null; } set { } } public System.Security.Policy.IMembershipCondition MembershipCondition { get { throw null; } set { } } public abstract string MergeLogic { get; } public string Name { get { throw null; } set { } } public virtual string PermissionSetName { get { throw null; } } public System.Security.Policy.PolicyStatement PolicyStatement { get { throw null; } set { } } public void AddChild(System.Security.Policy.CodeGroup group) { } public abstract System.Security.Policy.CodeGroup Copy(); protected virtual void CreateXml(System.Security.SecurityElement element, System.Security.Policy.PolicyLevel level) { } public override bool Equals(object o) { throw null; } public bool Equals(System.Security.Policy.CodeGroup cg, bool compareChildren) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } protected virtual void ParseXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public void RemoveChild(System.Security.Policy.CodeGroup group) { } public abstract System.Security.Policy.PolicyStatement Resolve(System.Security.Policy.Evidence evidence); public abstract System.Security.Policy.CodeGroup ResolveMatchingCodeGroups(System.Security.Policy.Evidence evidence); public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.MonoTODOAttribute("Serialization format not compatible with .NET")] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class Evidence : System.Collections.ICollection, System.Collections.IEnumerable { public Evidence() { } [System.ObsoleteAttribute] public Evidence(object[] hostEvidence, object[] assemblyEvidence) { } public Evidence(System.Security.Policy.Evidence evidence) { } public Evidence(System.Security.Policy.EvidenceBase[] hostEvidence, System.Security.Policy.EvidenceBase[] assemblyEvidence) { } [System.ObsoleteAttribute] public int Count { get { throw null; } } public bool IsReadOnly { get { throw null; } } public bool IsSynchronized { get { throw null; } } public bool Locked { get { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true)]set { } } public object SyncRoot { get { throw null; } } [System.ObsoleteAttribute] public void AddAssembly(object id) { } [System.ObsoleteAttribute] public void AddHost(object id) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void Clear() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Policy.Evidence Clone() { throw null; } [System.ObsoleteAttribute] public void CopyTo(System.Array array, int index) { } public System.Collections.IEnumerator GetAssemblyEnumerator() { throw null; } [System.ObsoleteAttribute] public System.Collections.IEnumerator GetEnumerator() { throw null; } public System.Collections.IEnumerator GetHostEnumerator() { throw null; } public void Merge(System.Security.Policy.Evidence evidence) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void RemoveType(System.Type t) { } } [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)] [System.SerializableAttribute] public abstract partial class EvidenceBase { protected EvidenceBase() { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Assert, SerializationFormatter=true)] public virtual System.Security.Policy.EvidenceBase Clone() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class FileCodeGroup : System.Security.Policy.CodeGroup { public FileCodeGroup(System.Security.Policy.IMembershipCondition membershipCondition, System.Security.Permissions.FileIOPermissionAccess access) : base (default(System.Security.Policy.IMembershipCondition), default(System.Security.Policy.PolicyStatement)) { } public override string AttributeString { get { throw null; } } public override string MergeLogic { get { throw null; } } public override string PermissionSetName { get { throw null; } } public override System.Security.Policy.CodeGroup Copy() { throw null; } protected override void CreateXml(System.Security.SecurityElement element, System.Security.Policy.PolicyLevel level) { } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } protected override void ParseXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override System.Security.Policy.PolicyStatement Resolve(System.Security.Policy.Evidence evidence) { throw null; } public override System.Security.Policy.CodeGroup ResolveMatchingCodeGroups(System.Security.Policy.Evidence evidence) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class FirstMatchCodeGroup : System.Security.Policy.CodeGroup { public FirstMatchCodeGroup(System.Security.Policy.IMembershipCondition membershipCondition, System.Security.Policy.PolicyStatement policy) : base (default(System.Security.Policy.IMembershipCondition), default(System.Security.Policy.PolicyStatement)) { } public override string MergeLogic { get { throw null; } } public override System.Security.Policy.CodeGroup Copy() { throw null; } public override System.Security.Policy.PolicyStatement Resolve(System.Security.Policy.Evidence evidence) { throw null; } public override System.Security.Policy.CodeGroup ResolveMatchingCodeGroups(System.Security.Policy.Evidence evidence) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class GacInstalled : System.Security.Policy.EvidenceBase, System.Security.Policy.IIdentityPermissionFactory { public GacInstalled() { } public object Copy() { throw null; } public System.Security.IPermission CreateIdentityPermission(System.Security.Policy.Evidence evidence) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class GacMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public GacMembershipCondition() { } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class Hash : System.Security.Policy.EvidenceBase, System.Runtime.Serialization.ISerializable { public Hash(System.Reflection.Assembly assembly) { } public byte[] MD5 { get { throw null; } } public byte[] SHA1 { get { throw null; } } public static System.Security.Policy.Hash CreateMD5(byte[] md5) { throw null; } public static System.Security.Policy.Hash CreateSHA1(byte[] sha1) { throw null; } public byte[] GenerateHash(System.Security.Cryptography.HashAlgorithm hashAlg) { throw null; } public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class HashMembershipCondition : System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable, System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public HashMembershipCondition(System.Security.Cryptography.HashAlgorithm hashAlg, byte[] value) { } public System.Security.Cryptography.HashAlgorithm HashAlgorithm { get { throw null; } set { } } public byte[] HashValue { get { throw null; } set { } } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } [System.MonoTODOAttribute("fx 2.0")] void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } [System.MonoTODOAttribute("fx 2.0")] void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial interface IApplicationTrustManager : System.Security.ISecurityEncodable { System.Security.Policy.ApplicationTrust DetermineApplicationTrust(System.ActivationContext activationContext, System.Security.Policy.TrustManagerContext context); } public partial interface IIdentityPermissionFactory { System.Security.IPermission CreateIdentityPermission(System.Security.Policy.Evidence evidence); } public partial interface IMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable { bool Check(System.Security.Policy.Evidence evidence); System.Security.Policy.IMembershipCondition Copy(); bool Equals(object obj); string ToString(); } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class NetCodeGroup : System.Security.Policy.CodeGroup { public static readonly string AbsentOriginScheme; public static readonly string AnyOtherOriginScheme; public NetCodeGroup(System.Security.Policy.IMembershipCondition membershipCondition) : base (default(System.Security.Policy.IMembershipCondition), default(System.Security.Policy.PolicyStatement)) { } public override string AttributeString { get { throw null; } } public override string MergeLogic { get { throw null; } } public override string PermissionSetName { get { throw null; } } [System.MonoTODOAttribute("(2.0) missing validations")] public void AddConnectAccess(string originScheme, System.Security.Policy.CodeConnectAccess connectAccess) { } public override System.Security.Policy.CodeGroup Copy() { throw null; } [System.MonoTODOAttribute("(2.0) Add new stuff (CodeConnectAccess) into XML")] protected override void CreateXml(System.Security.SecurityElement element, System.Security.Policy.PolicyLevel level) { } public override bool Equals(object o) { throw null; } public System.Collections.DictionaryEntry[] GetConnectAccessRules() { throw null; } public override int GetHashCode() { throw null; } [System.MonoTODOAttribute("(2.0) Parse new stuff (CodeConnectAccess) from XML")] protected override void ParseXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public void ResetConnectAccess() { } public override System.Security.Policy.PolicyStatement Resolve(System.Security.Policy.Evidence evidence) { throw null; } public override System.Security.Policy.CodeGroup ResolveMatchingCodeGroups(System.Security.Policy.Evidence evidence) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PermissionRequestEvidence : System.Security.Policy.EvidenceBase { public PermissionRequestEvidence(System.Security.PermissionSet request, System.Security.PermissionSet optional, System.Security.PermissionSet denied) { } public System.Security.PermissionSet DeniedPermissions { get { throw null; } } public System.Security.PermissionSet OptionalPermissions { get { throw null; } } public System.Security.PermissionSet RequestedPermissions { get { throw null; } } public System.Security.Policy.PermissionRequestEvidence Copy() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class PolicyException : System.SystemException { public PolicyException() { } protected PolicyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public PolicyException(string message) { } public PolicyException(string message, System.Exception exception) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PolicyLevel { internal PolicyLevel() { } [System.ObsoleteAttribute("All GACed assemblies are now fully trusted and all permissions now succeed on fully trusted code.")] public System.Collections.IList FullTrustAssemblies { get { throw null; } } public string Label { get { throw null; } } public System.Collections.IList NamedPermissionSets { get { throw null; } } public System.Security.Policy.CodeGroup RootCodeGroup { get { throw null; } set { } } public string StoreLocation { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.PolicyLevelType Type { get { throw null; } } [System.ObsoleteAttribute("All GACed assemblies are now fully trusted and all permissions now succeed on fully trusted code.")] public void AddFullTrustAssembly(System.Security.Policy.StrongName sn) { } [System.ObsoleteAttribute("All GACed assemblies are now fully trusted and all permissions now succeed on fully trusted code.")] public void AddFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition snMC) { } public void AddNamedPermissionSet(System.Security.NamedPermissionSet permSet) { } public System.Security.NamedPermissionSet ChangeNamedPermissionSet(string name, System.Security.PermissionSet pSet) { throw null; } public static System.Security.Policy.PolicyLevel CreateAppDomainLevel() { throw null; } public void FromXml(System.Security.SecurityElement e) { } public System.Security.NamedPermissionSet GetNamedPermissionSet(string name) { throw null; } public void Recover() { } [System.ObsoleteAttribute("All GACed assemblies are now fully trusted and all permissions now succeed on fully trusted code.")] public void RemoveFullTrustAssembly(System.Security.Policy.StrongName sn) { } [System.ObsoleteAttribute("All GACed assemblies are now fully trusted and all permissions now succeed on fully trusted code.")] public void RemoveFullTrustAssembly(System.Security.Policy.StrongNameMembershipCondition snMC) { } public System.Security.NamedPermissionSet RemoveNamedPermissionSet(System.Security.NamedPermissionSet permSet) { throw null; } public System.Security.NamedPermissionSet RemoveNamedPermissionSet(string name) { throw null; } public void Reset() { } public System.Security.Policy.PolicyStatement Resolve(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.CodeGroup ResolveMatchingCodeGroups(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.SecurityElement ToXml() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class PolicyStatement : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable { public PolicyStatement(System.Security.PermissionSet permSet) { } public PolicyStatement(System.Security.PermissionSet permSet, System.Security.Policy.PolicyStatementAttribute attributes) { } public System.Security.Policy.PolicyStatementAttribute Attributes { get { throw null; } set { } } public string AttributeString { get { throw null; } } public System.Security.PermissionSet PermissionSet { get { throw null; } set { } } public System.Security.Policy.PolicyStatement Copy() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override bool Equals(object obj) { throw null; } public void FromXml(System.Security.SecurityElement et) { } public void FromXml(System.Security.SecurityElement et, System.Security.Policy.PolicyLevel level) { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.FlagsAttribute] public enum PolicyStatementAttribute { All = 3, Exclusive = 1, LevelFinal = 2, Nothing = 0, } [System.SerializableAttribute] public sealed partial class Publisher : System.Security.Policy.EvidenceBase, System.Security.Policy.IIdentityPermissionFactory { public Publisher(System.Security.Cryptography.X509Certificates.X509Certificate cert) { } public System.Security.Cryptography.X509Certificates.X509Certificate Certificate { get { throw null; } } public object Copy() { throw null; } public System.Security.IPermission CreateIdentityPermission(System.Security.Policy.Evidence evidence) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.SerializableAttribute] public sealed partial class PublisherMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public PublisherMembershipCondition(System.Security.Cryptography.X509Certificates.X509Certificate certificate) { } public System.Security.Cryptography.X509Certificates.X509Certificate Certificate { get { throw null; } set { } } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class Site : System.Security.Policy.EvidenceBase, System.Security.Policy.IIdentityPermissionFactory { public Site(string name) { } public string Name { get { throw null; } } public object Copy() { throw null; } public static System.Security.Policy.Site CreateFromUrl(string url) { throw null; } public System.Security.IPermission CreateIdentityPermission(System.Security.Policy.Evidence evidence) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class SiteMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public SiteMembershipCondition(string site) { } public string Site { get { throw null; } set { } } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class StrongName : System.Security.Policy.EvidenceBase, System.Security.Policy.IIdentityPermissionFactory { public StrongName(System.Security.Permissions.StrongNamePublicKeyBlob blob, string name, System.Version version) { } public string Name { get { throw null; } } public System.Security.Permissions.StrongNamePublicKeyBlob PublicKey { get { throw null; } } public System.Version Version { get { throw null; } } public object Copy() { throw null; } public System.Security.IPermission CreateIdentityPermission(System.Security.Policy.Evidence evidence) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class StrongNameMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public StrongNameMembershipCondition(System.Security.Permissions.StrongNamePublicKeyBlob blob, string name, System.Version version) { } public string Name { get { throw null; } set { } } public System.Security.Permissions.StrongNamePublicKeyBlob PublicKey { get { throw null; } set { } } public System.Version Version { get { throw null; } set { } } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class TrustManagerContext { public TrustManagerContext() { } public TrustManagerContext(System.Security.Policy.TrustManagerUIContext uiContext) { } public virtual bool IgnorePersistedDecision { get { throw null; } set { } } public virtual bool KeepAlive { get { throw null; } set { } } public virtual bool NoPrompt { get { throw null; } set { } } public virtual bool Persist { get { throw null; } set { } } public virtual System.ApplicationIdentity PreviousApplicationIdentity { get { throw null; } set { } } public virtual System.Security.Policy.TrustManagerUIContext UIContext { get { throw null; } set { } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public enum TrustManagerUIContext { Install = 0, Run = 2, Upgrade = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class UnionCodeGroup : System.Security.Policy.CodeGroup { public UnionCodeGroup(System.Security.Policy.IMembershipCondition membershipCondition, System.Security.Policy.PolicyStatement policy) : base (default(System.Security.Policy.IMembershipCondition), default(System.Security.Policy.PolicyStatement)) { } public override string MergeLogic { get { throw null; } } public override System.Security.Policy.CodeGroup Copy() { throw null; } public override System.Security.Policy.PolicyStatement Resolve(System.Security.Policy.Evidence evidence) { throw null; } public override System.Security.Policy.CodeGroup ResolveMatchingCodeGroups(System.Security.Policy.Evidence evidence) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class Url : System.Security.Policy.EvidenceBase, System.Security.Policy.IIdentityPermissionFactory { public Url(string name) { } public string Value { get { throw null; } } public object Copy() { throw null; } public System.Security.IPermission CreateIdentityPermission(System.Security.Policy.Evidence evidence) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class UrlMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public UrlMembershipCondition(string url) { } public string Url { get { throw null; } set { } } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class Zone : System.Security.Policy.EvidenceBase, System.Security.Policy.IIdentityPermissionFactory { public Zone(System.Security.SecurityZone zone) { } public System.Security.SecurityZone SecurityZone { get { throw null; } } public object Copy() { throw null; } [System.MonoTODOAttribute("Not user configurable yet")] public static System.Security.Policy.Zone CreateFromUrl(string url) { throw null; } public System.Security.IPermission CreateIdentityPermission(System.Security.Policy.Evidence evidence) { throw null; } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ZoneMembershipCondition : System.Security.ISecurityEncodable, System.Security.ISecurityPolicyEncodable, System.Security.Policy.IMembershipCondition { public ZoneMembershipCondition(System.Security.SecurityZone zone) { } public System.Security.SecurityZone SecurityZone { get { throw null; } set { } } public bool Check(System.Security.Policy.Evidence evidence) { throw null; } public System.Security.Policy.IMembershipCondition Copy() { throw null; } public override bool Equals(object o) { throw null; } public void FromXml(System.Security.SecurityElement e) { } public void FromXml(System.Security.SecurityElement e, System.Security.Policy.PolicyLevel level) { } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public System.Security.SecurityElement ToXml() { throw null; } public System.Security.SecurityElement ToXml(System.Security.Policy.PolicyLevel level) { throw null; } } } namespace System.Security.Principal { [System.SerializableAttribute] public partial class GenericIdentity : System.Security.Claims.ClaimsIdentity { protected GenericIdentity(System.Security.Principal.GenericIdentity identity) { } public GenericIdentity(string name) { } public GenericIdentity(string name, string type) { } public override string AuthenticationType { get { throw null; } } public override System.Collections.Generic.IEnumerable Claims { get { throw null; } } public override bool IsAuthenticated { get { throw null; } } public override string Name { get { throw null; } } public override System.Security.Claims.ClaimsIdentity Clone() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class GenericPrincipal : System.Security.Claims.ClaimsPrincipal { public GenericPrincipal(System.Security.Principal.IIdentity identity, string[] roles) { } public override System.Security.Principal.IIdentity Identity { get { throw null; } } public override bool IsInRole(string role) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.SerializableAttribute] public sealed partial class IdentityNotMappedException : System.SystemException { public IdentityNotMappedException() { } public IdentityNotMappedException(string message) { } public IdentityNotMappedException(string message, System.Exception inner) { } public System.Security.Principal.IdentityReferenceCollection UnmappedIdentities { get { throw null; } } [System.MonoTODOAttribute("not implemented")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public abstract partial class IdentityReference { internal IdentityReference() { } public abstract string Value { get; } public abstract override bool Equals(object o); public abstract override int GetHashCode(); public abstract bool IsValidTargetType(System.Type targetType); public static bool operator ==(System.Security.Principal.IdentityReference left, System.Security.Principal.IdentityReference right) { throw null; } public static bool operator !=(System.Security.Principal.IdentityReference left, System.Security.Principal.IdentityReference right) { throw null; } public abstract override string ToString(); public abstract System.Security.Principal.IdentityReference Translate(System.Type targetType); } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public partial class IdentityReferenceCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { public IdentityReferenceCollection() { } public IdentityReferenceCollection(int capacity) { } public int Count { get { throw null; } } public bool IsReadOnly { get { throw null; } } public System.Security.Principal.IdentityReference this[int index] { get { throw null; } set { } } public void Add(System.Security.Principal.IdentityReference identity) { } public void Clear() { } public bool Contains(System.Security.Principal.IdentityReference identity) { throw null; } public void CopyTo(System.Security.Principal.IdentityReference[] array, int offset) { } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } public bool Remove(System.Security.Principal.IdentityReference identity) { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public System.Security.Principal.IdentityReferenceCollection Translate(System.Type targetType) { throw null; } public System.Security.Principal.IdentityReferenceCollection Translate(System.Type targetType, bool forceSuccess) { throw null; } } public partial interface IIdentity { string AuthenticationType { get; } bool IsAuthenticated { get; } string Name { get; } } public partial interface IPrincipal { System.Security.Principal.IIdentity Identity { get; } bool IsInRole(string role); } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public sealed partial class NTAccount : System.Security.Principal.IdentityReference { public NTAccount(string name) { } public NTAccount(string domainName, string accountName) { } public override string Value { get { throw null; } } public override bool Equals(object o) { throw null; } public override int GetHashCode() { throw null; } public override bool IsValidTargetType(System.Type targetType) { throw null; } public static bool operator ==(System.Security.Principal.NTAccount left, System.Security.Principal.NTAccount right) { throw null; } public static bool operator !=(System.Security.Principal.NTAccount left, System.Security.Principal.NTAccount right) { throw null; } public override string ToString() { throw null; } public override System.Security.Principal.IdentityReference Translate(System.Type targetType) { throw null; } } public enum PrincipalPolicy { NoPrincipal = 1, UnauthenticatedPrincipal = 0, WindowsPrincipal = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public sealed partial class SecurityIdentifier : System.Security.Principal.IdentityReference, System.IComparable { public static readonly int MaxBinaryLength; public static readonly int MinBinaryLength; public SecurityIdentifier(byte[] binaryForm, int offset) { } public SecurityIdentifier(System.IntPtr binaryForm) { } public SecurityIdentifier(System.Security.Principal.WellKnownSidType sidType, System.Security.Principal.SecurityIdentifier domainSid) { } public SecurityIdentifier(string sddlForm) { } public System.Security.Principal.SecurityIdentifier AccountDomainSid { get { throw null; } } public int BinaryLength { get { throw null; } } public override string Value { get { throw null; } } public int CompareTo(System.Security.Principal.SecurityIdentifier sid) { throw null; } public override bool Equals(object o) { throw null; } public bool Equals(System.Security.Principal.SecurityIdentifier sid) { throw null; } public void GetBinaryForm(byte[] binaryForm, int offset) { } public override int GetHashCode() { throw null; } public bool IsAccountSid() { throw null; } public bool IsEqualDomainSid(System.Security.Principal.SecurityIdentifier sid) { throw null; } public override bool IsValidTargetType(System.Type targetType) { throw null; } public bool IsWellKnown(System.Security.Principal.WellKnownSidType type) { throw null; } public static bool operator ==(System.Security.Principal.SecurityIdentifier left, System.Security.Principal.SecurityIdentifier right) { throw null; } public static bool operator !=(System.Security.Principal.SecurityIdentifier left, System.Security.Principal.SecurityIdentifier right) { throw null; } public override string ToString() { throw null; } public override System.Security.Principal.IdentityReference Translate(System.Type targetType) { throw null; } } [System.FlagsAttribute] public enum TokenAccessLevels { AdjustDefault = 128, AdjustGroups = 64, AdjustPrivileges = 32, AdjustSessionId = 256, AllAccess = 983551, AssignPrimary = 1, Duplicate = 2, Impersonate = 4, MaximumAllowed = 33554432, Query = 8, QuerySource = 16, Read = 131080, Write = 131296, } public enum TokenImpersonationLevel { Anonymous = 1, Delegation = 4, Identification = 2, Impersonation = 3, None = 0, } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public enum WellKnownSidType { AccountAdministratorSid = 38, AccountCertAdminsSid = 46, AccountComputersSid = 44, AccountControllersSid = 45, AccountDomainAdminsSid = 41, AccountDomainGuestsSid = 43, AccountDomainUsersSid = 42, AccountEnterpriseAdminsSid = 48, AccountGuestSid = 39, AccountKrbtgtSid = 40, AccountPolicyAdminsSid = 49, AccountRasAndIasServersSid = 50, AccountSchemaAdminsSid = 47, AnonymousSid = 13, AuthenticatedUserSid = 17, BatchSid = 10, BuiltinAccountOperatorsSid = 30, BuiltinAdministratorsSid = 26, BuiltinAuthorizationAccessSid = 59, BuiltinBackupOperatorsSid = 33, BuiltinDomainSid = 25, BuiltinGuestsSid = 28, BuiltinIncomingForestTrustBuildersSid = 56, BuiltinNetworkConfigurationOperatorsSid = 37, BuiltinPerformanceLoggingUsersSid = 58, BuiltinPerformanceMonitoringUsersSid = 57, BuiltinPowerUsersSid = 29, BuiltinPreWindows2000CompatibleAccessSid = 35, BuiltinPrintOperatorsSid = 32, BuiltinRemoteDesktopUsersSid = 36, BuiltinReplicatorSid = 34, BuiltinSystemOperatorsSid = 31, BuiltinUsersSid = 27, CreatorGroupServerSid = 6, CreatorGroupSid = 4, CreatorOwnerServerSid = 5, CreatorOwnerSid = 3, DialupSid = 8, DigestAuthenticationSid = 52, EnterpriseControllersSid = 15, InteractiveSid = 11, LocalServiceSid = 23, LocalSid = 2, LocalSystemSid = 22, LogonIdsSid = 21, MaxDefined = 60, NetworkServiceSid = 24, NetworkSid = 9, NTAuthoritySid = 7, NtlmAuthenticationSid = 51, NullSid = 0, OtherOrganizationSid = 55, ProxySid = 14, RemoteLogonIdSid = 20, RestrictedCodeSid = 18, SChannelAuthenticationSid = 53, SelfSid = 16, ServiceSid = 12, TerminalServerSid = 19, ThisOrganizationSid = 54, WinAccountReadonlyControllersSid = 75, WinApplicationPackageAuthoritySid = 83, WinBuiltinAnyPackageSid = 84, WinBuiltinCertSvcDComAccessGroup = 78, WinBuiltinCryptoOperatorsSid = 64, WinBuiltinDCOMUsersSid = 61, WinBuiltinEventLogReadersGroup = 76, WinBuiltinIUsersSid = 62, WinBuiltinTerminalServerLicenseServersSid = 60, WinCacheablePrincipalsGroupSid = 72, WinCapabilityDocumentsLibrarySid = 91, WinCapabilityEnterpriseAuthenticationSid = 93, WinCapabilityInternetClientServerSid = 86, WinCapabilityInternetClientSid = 85, WinCapabilityMusicLibrarySid = 90, WinCapabilityPicturesLibrarySid = 88, WinCapabilityPrivateNetworkClientServerSid = 87, WinCapabilityRemovableStorageSid = 94, WinCapabilitySharedUserCertificatesSid = 92, WinCapabilityVideosLibrarySid = 89, WinConsoleLogonSid = 81, WinCreatorOwnerRightsSid = 71, WinEnterpriseReadonlyControllersSid = 74, WinHighLabelSid = 68, WinIUserSid = 63, WinLocalLogonSid = 80, WinLowLabelSid = 66, WinMediumLabelSid = 67, WinMediumPlusLabelSid = 79, WinNewEnterpriseReadonlyControllersSid = 77, WinNonCacheablePrincipalsGroupSid = 73, WinSystemLabelSid = 69, WinThisOrganizationCertificateSid = 82, WinUntrustedLabelSid = 65, WinWriteRestrictedCodeSid = 70, WorldSid = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum WindowsAccountType { Anonymous = 3, Guest = 1, Normal = 0, System = 2, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public enum WindowsBuiltInRole { AccountOperator = 548, Administrator = 544, BackupOperator = 551, Guest = 546, PowerUser = 547, PrintOperator = 550, Replicator = 552, SystemOperator = 549, User = 545, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class WindowsIdentity : System.Security.Claims.ClaimsIdentity, System.IDisposable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable, System.Security.Principal.IIdentity { [System.NonSerializedAttribute] public new const string DefaultIssuer = "AD AUTHORITY"; [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public WindowsIdentity(System.IntPtr userToken) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public WindowsIdentity(System.IntPtr userToken, string type) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public WindowsIdentity(System.IntPtr userToken, string type, System.Security.Principal.WindowsAccountType acctType) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public WindowsIdentity(System.IntPtr userToken, string type, System.Security.Principal.WindowsAccountType acctType, bool isAuthenticated) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public WindowsIdentity(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public WindowsIdentity(string sUserPrincipalName) { } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public WindowsIdentity(string sUserPrincipalName, string type) { } public Microsoft.Win32.SafeHandles.SafeAccessTokenHandle AccessToken { get { throw null; } } public sealed override string AuthenticationType { get { throw null; } } [System.MonoTODOAttribute("not implemented")] public System.Security.Principal.IdentityReferenceCollection Groups { get { throw null; } } [System.MonoTODOAttribute("not implemented")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Principal.TokenImpersonationLevel ImpersonationLevel { get { throw null; } } public virtual bool IsAnonymous { get { throw null; } } public override bool IsAuthenticated { get { throw null; } } public virtual bool IsGuest { get { throw null; } } public virtual bool IsSystem { get { throw null; } } public override string Name { get { throw null; } } [System.MonoTODOAttribute("not implemented")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Principal.SecurityIdentifier Owner { get { throw null; } } public virtual System.IntPtr Token { get { throw null; } } [System.MonoTODOAttribute("not implemented")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Security.Principal.SecurityIdentifier User { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void Dispose() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] protected virtual void Dispose(bool disposing) { } public static System.Security.Principal.WindowsIdentity GetAnonymous() { throw null; } public static System.Security.Principal.WindowsIdentity GetCurrent() { throw null; } [System.MonoTODOAttribute("need icall changes")] public static System.Security.Principal.WindowsIdentity GetCurrent(bool ifImpersonating) { throw null; } [System.MonoTODOAttribute("need icall changes")] public static System.Security.Principal.WindowsIdentity GetCurrent(System.Security.Principal.TokenAccessLevels desiredAccess) { throw null; } public virtual System.Security.Principal.WindowsImpersonationContext Impersonate() { throw null; } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlPrincipal=true)] public static System.Security.Principal.WindowsImpersonationContext Impersonate(System.IntPtr userToken) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static void RunImpersonated(Microsoft.Win32.SafeHandles.SafeAccessTokenHandle safeAccessTokenHandle, System.Action action) { } [System.Security.SecuritySafeCriticalAttribute] public static T RunImpersonated(Microsoft.Win32.SafeHandles.SafeAccessTokenHandle safeAccessTokenHandle, System.Func func) { throw null; } void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class WindowsImpersonationContext : System.IDisposable { internal WindowsImpersonationContext() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public void Dispose() { } [System.Runtime.InteropServices.ComVisibleAttribute(false)] protected virtual void Dispose(bool disposing) { } public void Undo() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class WindowsPrincipal : System.Security.Claims.ClaimsPrincipal { public WindowsPrincipal(System.Security.Principal.WindowsIdentity ntIdentity) { } public override System.Security.Principal.IIdentity Identity { get { throw null; } } public virtual bool IsInRole(int rid) { throw null; } [System.MonoTODOAttribute("not implemented")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual bool IsInRole(System.Security.Principal.SecurityIdentifier sid) { throw null; } public virtual bool IsInRole(System.Security.Principal.WindowsBuiltInRole role) { throw null; } public override bool IsInRole(string role) { throw null; } } } namespace System.Text { [System.SerializableAttribute] public partial class ASCIIEncoding : System.Text.Encoding { public ASCIIEncoding() { } public override bool IsSingleByte { get { throw null; } } [System.CLSCompliantAttribute(false)] public unsafe override int GetByteCount(char* chars, int count) { throw null; } public override int GetByteCount(char[] chars, int index, int count) { throw null; } public override int GetByteCount(string chars) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; } public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } public override int GetBytes(string chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetCharCount(byte* bytes, int count) { throw null; } public override int GetCharCount(byte[] bytes, int index, int count) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; } public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) { throw null; } public override System.Text.Decoder GetDecoder() { throw null; } public override System.Text.Encoder GetEncoder() { throw null; } public override int GetMaxByteCount(int charCount) { throw null; } public override int GetMaxCharCount(int byteCount) { throw null; } public override string GetString(byte[] bytes, int byteIndex, int byteCount) { throw null; } } [System.SerializableAttribute] public abstract partial class Decoder { protected Decoder() { } public System.Text.DecoderFallback Fallback { get { throw null; } set { } } public System.Text.DecoderFallbackBuffer FallbackBuffer { get { throw null; } } [System.CLSCompliantAttribute(false)] public unsafe virtual void Convert(byte* bytes, int byteCount, char* chars, int charCount, bool flush, out int bytesUsed, out int charsUsed, out bool completed) { throw null; } public virtual void Convert(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex, int charCount, bool flush, out int bytesUsed, out int charsUsed, out bool completed) { throw null; } public virtual void Convert(System.ReadOnlySpan bytes, System.Span chars, bool flush, out int bytesUsed, out int charsUsed, out bool completed) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe virtual int GetCharCount(byte* bytes, int count, bool flush) { throw null; } public abstract int GetCharCount(byte[] bytes, int index, int count); public virtual int GetCharCount(byte[] bytes, int index, int count, bool flush) { throw null; } public virtual int GetCharCount(System.ReadOnlySpan bytes, bool flush) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe virtual int GetChars(byte* bytes, int byteCount, char* chars, int charCount, bool flush) { throw null; } public abstract int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex); public virtual int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex, bool flush) { throw null; } public virtual int GetChars(System.ReadOnlySpan bytes, System.Span chars, bool flush) { throw null; } public virtual void Reset() { } } [System.SerializableAttribute] public sealed partial class DecoderExceptionFallback : System.Text.DecoderFallback { public DecoderExceptionFallback() { } public override int MaxCharCount { get { throw null; } } public override System.Text.DecoderFallbackBuffer CreateFallbackBuffer() { throw null; } public override bool Equals(object value) { throw null; } public override int GetHashCode() { throw null; } } public sealed partial class DecoderExceptionFallbackBuffer : System.Text.DecoderFallbackBuffer { public DecoderExceptionFallbackBuffer() { } public override int Remaining { get { throw null; } } public override bool Fallback(byte[] bytesUnknown, int index) { throw null; } public override char GetNextChar() { throw null; } public override bool MovePrevious() { throw null; } } [System.SerializableAttribute] public abstract partial class DecoderFallback { protected DecoderFallback() { } public static System.Text.DecoderFallback ExceptionFallback { get { throw null; } } public abstract int MaxCharCount { get; } public static System.Text.DecoderFallback ReplacementFallback { get { throw null; } } public abstract System.Text.DecoderFallbackBuffer CreateFallbackBuffer(); } public abstract partial class DecoderFallbackBuffer { protected DecoderFallbackBuffer() { } public abstract int Remaining { get; } public abstract bool Fallback(byte[] bytesUnknown, int index); public abstract char GetNextChar(); public abstract bool MovePrevious(); public virtual void Reset() { } } [System.SerializableAttribute] public sealed partial class DecoderFallbackException : System.ArgumentException { public DecoderFallbackException() { } public DecoderFallbackException(string message) { } public DecoderFallbackException(string message, byte[] bytesUnknown, int index) { } public DecoderFallbackException(string message, System.Exception innerException) { } public byte[] BytesUnknown { get { throw null; } } public int Index { get { throw null; } } } [System.SerializableAttribute] public sealed partial class DecoderReplacementFallback : System.Text.DecoderFallback, System.Runtime.Serialization.ISerializable { public DecoderReplacementFallback() { } public DecoderReplacementFallback(string replacement) { } public string DefaultString { get { throw null; } } public override int MaxCharCount { get { throw null; } } public override System.Text.DecoderFallbackBuffer CreateFallbackBuffer() { throw null; } public override bool Equals(object value) { throw null; } public override int GetHashCode() { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } public sealed partial class DecoderReplacementFallbackBuffer : System.Text.DecoderFallbackBuffer { public DecoderReplacementFallbackBuffer(System.Text.DecoderReplacementFallback fallback) { } public override int Remaining { get { throw null; } } public override bool Fallback(byte[] bytesUnknown, int index) { throw null; } public override char GetNextChar() { throw null; } public override bool MovePrevious() { throw null; } public override void Reset() { } } [System.SerializableAttribute] public abstract partial class Encoder { protected Encoder() { } public System.Text.EncoderFallback Fallback { get { throw null; } set { } } public System.Text.EncoderFallbackBuffer FallbackBuffer { get { throw null; } } [System.CLSCompliantAttribute(false)] public unsafe virtual void Convert(char* chars, int charCount, byte* bytes, int byteCount, bool flush, out int charsUsed, out int bytesUsed, out bool completed) { throw null; } public virtual void Convert(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex, int byteCount, bool flush, out int charsUsed, out int bytesUsed, out bool completed) { throw null; } public virtual void Convert(System.ReadOnlySpan chars, System.Span bytes, bool flush, out int charsUsed, out int bytesUsed, out bool completed) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe virtual int GetByteCount(char* chars, int count, bool flush) { throw null; } public abstract int GetByteCount(char[] chars, int index, int count, bool flush); public virtual int GetByteCount(System.ReadOnlySpan chars, bool flush) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe virtual int GetBytes(char* chars, int charCount, byte* bytes, int byteCount, bool flush) { throw null; } public abstract int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex, bool flush); public virtual int GetBytes(System.ReadOnlySpan chars, System.Span bytes, bool flush) { throw null; } public virtual void Reset() { } } [System.SerializableAttribute] public sealed partial class EncoderExceptionFallback : System.Text.EncoderFallback { public EncoderExceptionFallback() { } public override int MaxCharCount { get { throw null; } } public override System.Text.EncoderFallbackBuffer CreateFallbackBuffer() { throw null; } public override bool Equals(object value) { throw null; } public override int GetHashCode() { throw null; } } public sealed partial class EncoderExceptionFallbackBuffer : System.Text.EncoderFallbackBuffer { public EncoderExceptionFallbackBuffer() { } public override int Remaining { get { throw null; } } public override bool Fallback(char charUnknownHigh, char charUnknownLow, int index) { throw null; } public override bool Fallback(char charUnknown, int index) { throw null; } public override char GetNextChar() { throw null; } public override bool MovePrevious() { throw null; } } [System.SerializableAttribute] public abstract partial class EncoderFallback { protected EncoderFallback() { } public static System.Text.EncoderFallback ExceptionFallback { get { throw null; } } public abstract int MaxCharCount { get; } public static System.Text.EncoderFallback ReplacementFallback { get { throw null; } } public abstract System.Text.EncoderFallbackBuffer CreateFallbackBuffer(); } public abstract partial class EncoderFallbackBuffer { protected EncoderFallbackBuffer() { } public abstract int Remaining { get; } public abstract bool Fallback(char charUnknownHigh, char charUnknownLow, int index); public abstract bool Fallback(char charUnknown, int index); public abstract char GetNextChar(); public abstract bool MovePrevious(); public virtual void Reset() { } } [System.SerializableAttribute] public sealed partial class EncoderFallbackException : System.ArgumentException { public EncoderFallbackException() { } public EncoderFallbackException(string message) { } public EncoderFallbackException(string message, System.Exception innerException) { } public char CharUnknown { get { throw null; } } public char CharUnknownHigh { get { throw null; } } public char CharUnknownLow { get { throw null; } } public int Index { get { throw null; } } public bool IsUnknownSurrogate() { throw null; } } [System.SerializableAttribute] public sealed partial class EncoderReplacementFallback : System.Text.EncoderFallback, System.Runtime.Serialization.ISerializable { public EncoderReplacementFallback() { } public EncoderReplacementFallback(string replacement) { } public string DefaultString { get { throw null; } } public override int MaxCharCount { get { throw null; } } public override System.Text.EncoderFallbackBuffer CreateFallbackBuffer() { throw null; } public override bool Equals(object value) { throw null; } public override int GetHashCode() { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } } public sealed partial class EncoderReplacementFallbackBuffer : System.Text.EncoderFallbackBuffer { public EncoderReplacementFallbackBuffer(System.Text.EncoderReplacementFallback fallback) { } public override int Remaining { get { throw null; } } public override bool Fallback(char charUnknownHigh, char charUnknownLow, int index) { throw null; } public override bool Fallback(char charUnknown, int index) { throw null; } public override char GetNextChar() { throw null; } public override bool MovePrevious() { throw null; } public override void Reset() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public abstract partial class Encoding : System.ICloneable { protected Encoding() { } protected Encoding(int codePage) { } protected Encoding(int codePage, System.Text.EncoderFallback encoderFallback, System.Text.DecoderFallback decoderFallback) { } public static System.Text.Encoding ASCII { get { throw null; } } public static System.Text.Encoding BigEndianUnicode { get { throw null; } } public virtual string BodyName { get { throw null; } } public virtual int CodePage { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Text.DecoderFallback DecoderFallback { get { throw null; } set { } } public static System.Text.Encoding Default { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Text.EncoderFallback EncoderFallback { get { throw null; } set { } } public virtual string EncodingName { get { throw null; } } public virtual string HeaderName { get { throw null; } } public virtual bool IsBrowserDisplay { get { throw null; } } public virtual bool IsBrowserSave { get { throw null; } } public virtual bool IsMailNewsDisplay { get { throw null; } } public virtual bool IsMailNewsSave { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool IsReadOnly { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual bool IsSingleByte { get { throw null; } } public virtual System.ReadOnlySpan Preamble { get { throw null; } } public static System.Text.Encoding Unicode { get { throw null; } } public static System.Text.Encoding UTF32 { get { throw null; } } public static System.Text.Encoding UTF7 { get { throw null; } } public static System.Text.Encoding UTF8 { get { throw null; } } public virtual string WebName { get { throw null; } } public virtual int WindowsCodePage { get { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual object Clone() { throw null; } public static byte[] Convert(System.Text.Encoding srcEncoding, System.Text.Encoding dstEncoding, byte[] bytes) { throw null; } public static byte[] Convert(System.Text.Encoding srcEncoding, System.Text.Encoding dstEncoding, byte[] bytes, int index, int count) { throw null; } public override bool Equals(object value) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public unsafe virtual int GetByteCount(char* chars, int count) { throw null; } public virtual int GetByteCount(char[] chars) { throw null; } public abstract int GetByteCount(char[] chars, int index, int count); public virtual int GetByteCount(System.ReadOnlySpan chars) { throw null; } public virtual int GetByteCount(string s) { throw null; } public int GetByteCount(string str, int index, int count) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public unsafe virtual int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; } public virtual byte[] GetBytes(char[] chars) { throw null; } public virtual byte[] GetBytes(char[] chars, int index, int count) { throw null; } public abstract int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex); public virtual int GetBytes(System.ReadOnlySpan chars, System.Span bytes) { throw null; } public virtual byte[] GetBytes(string s) { throw null; } public byte[] GetBytes(string s, int index, int count) { throw null; } public virtual int GetBytes(string s, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public unsafe virtual int GetCharCount(byte* bytes, int count) { throw null; } public virtual int GetCharCount(byte[] bytes) { throw null; } public abstract int GetCharCount(byte[] bytes, int index, int count); public virtual int GetCharCount(System.ReadOnlySpan bytes) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public unsafe virtual int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; } public virtual char[] GetChars(byte[] bytes) { throw null; } public virtual char[] GetChars(byte[] bytes, int index, int count) { throw null; } public abstract int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex); public virtual int GetChars(System.ReadOnlySpan bytes, System.Span chars) { throw null; } public virtual System.Text.Decoder GetDecoder() { throw null; } public virtual System.Text.Encoder GetEncoder() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static System.Text.Encoding GetEncoding(int codepage) { throw null; } public static System.Text.Encoding GetEncoding(int codepage, System.Text.EncoderFallback encoderFallback, System.Text.DecoderFallback decoderFallback) { throw null; } public static System.Text.Encoding GetEncoding(string name) { throw null; } public static System.Text.Encoding GetEncoding(string name, System.Text.EncoderFallback encoderFallback, System.Text.DecoderFallback decoderFallback) { throw null; } public static System.Text.EncodingInfo[] GetEncodings() { throw null; } public override int GetHashCode() { throw null; } public abstract int GetMaxByteCount(int charCount); public abstract int GetMaxCharCount(int byteCount); public virtual byte[] GetPreamble() { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.SecurityCriticalAttribute] public unsafe string GetString(byte* bytes, int byteCount) { throw null; } public virtual string GetString(byte[] bytes) { throw null; } public virtual string GetString(byte[] bytes, int index, int count) { throw null; } public string GetString(System.ReadOnlySpan bytes) { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public bool IsAlwaysNormalized() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public virtual bool IsAlwaysNormalized(System.Text.NormalizationForm form) { throw null; } [System.Security.SecurityCriticalAttribute] public static void RegisterProvider(System.Text.EncodingProvider provider) { } } [System.SerializableAttribute] public sealed partial class EncodingInfo { internal EncodingInfo() { } public int CodePage { get { throw null; } } public string DisplayName { get { throw null; } } public string Name { get { throw null; } } public override bool Equals(object value) { throw null; } public System.Text.Encoding GetEncoding() { throw null; } public override int GetHashCode() { throw null; } } public abstract partial class EncodingProvider { public EncodingProvider() { } public abstract System.Text.Encoding GetEncoding(int codepage); public virtual System.Text.Encoding GetEncoding(int codepage, System.Text.EncoderFallback encoderFallback, System.Text.DecoderFallback decoderFallback) { throw null; } public abstract System.Text.Encoding GetEncoding(string name); public virtual System.Text.Encoding GetEncoding(string name, System.Text.EncoderFallback encoderFallback, System.Text.DecoderFallback decoderFallback) { throw null; } } public enum NormalizationForm { FormC = 1, FormD = 2, FormKC = 5, FormKD = 6, } [System.SerializableAttribute] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class StringBuilder : System.Runtime.Serialization.ISerializable { public StringBuilder() { } public StringBuilder(int capacity) { } public StringBuilder(int capacity, int maxCapacity) { } public StringBuilder(string value) { } public StringBuilder(string value, int capacity) { } public StringBuilder(string value, int startIndex, int length, int capacity) { } public int Capacity { get { throw null; } set { } } [System.Runtime.CompilerServices.IndexerName("Chars")] public char this[int index] { get { throw null; } set { } } public int Length { get { throw null; } set { } } public int MaxCapacity { get { throw null; } } public System.Text.StringBuilder Append(bool value) { throw null; } public System.Text.StringBuilder Append(byte value) { throw null; } public System.Text.StringBuilder Append(char value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe System.Text.StringBuilder Append(char* value, int valueCount) { throw null; } public System.Text.StringBuilder Append(char value, int repeatCount) { throw null; } public System.Text.StringBuilder Append(char[] value) { throw null; } public System.Text.StringBuilder Append(char[] value, int startIndex, int charCount) { throw null; } public System.Text.StringBuilder Append(decimal value) { throw null; } public System.Text.StringBuilder Append(double value) { throw null; } public System.Text.StringBuilder Append(short value) { throw null; } public System.Text.StringBuilder Append(int value) { throw null; } public System.Text.StringBuilder Append(long value) { throw null; } public System.Text.StringBuilder Append(object value) { throw null; } public System.Text.StringBuilder Append(System.ReadOnlySpan value) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Append(sbyte value) { throw null; } public System.Text.StringBuilder Append(float value) { throw null; } public System.Text.StringBuilder Append(string value) { throw null; } public System.Text.StringBuilder Append(string value, int startIndex, int count) { throw null; } public System.Text.StringBuilder Append(System.Text.StringBuilder value) { throw null; } public System.Text.StringBuilder Append(System.Text.StringBuilder value, int startIndex, int count) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Append(ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Append(uint value) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Append(ulong value) { throw null; } public System.Text.StringBuilder AppendFormat(System.IFormatProvider provider, string format, object arg0) { throw null; } public System.Text.StringBuilder AppendFormat(System.IFormatProvider provider, string format, object arg0, object arg1) { throw null; } public System.Text.StringBuilder AppendFormat(System.IFormatProvider provider, string format, object arg0, object arg1, object arg2) { throw null; } public System.Text.StringBuilder AppendFormat(System.IFormatProvider provider, string format, params object[] args) { throw null; } public System.Text.StringBuilder AppendFormat(string format, object arg0) { throw null; } public System.Text.StringBuilder AppendFormat(string format, object arg0, object arg1) { throw null; } public System.Text.StringBuilder AppendFormat(string format, object arg0, object arg1, object arg2) { throw null; } public System.Text.StringBuilder AppendFormat(string format, params object[] args) { throw null; } public System.Text.StringBuilder AppendJoin(char separator, params object[] values) { throw null; } public System.Text.StringBuilder AppendJoin(char separator, params string[] values) { throw null; } public System.Text.StringBuilder AppendJoin(string separator, params object[] values) { throw null; } public System.Text.StringBuilder AppendJoin(string separator, params string[] values) { throw null; } public System.Text.StringBuilder AppendJoin(char separator, System.Collections.Generic.IEnumerable values) { throw null; } public System.Text.StringBuilder AppendJoin(string separator, System.Collections.Generic.IEnumerable values) { throw null; } public System.Text.StringBuilder AppendLine() { throw null; } public System.Text.StringBuilder AppendLine(string value) { throw null; } public System.Text.StringBuilder Clear() { throw null; } public void CopyTo(int sourceIndex, char[] destination, int destinationIndex, int count) { } public void CopyTo(int sourceIndex, System.Span destination, int count) { } public int EnsureCapacity(int capacity) { throw null; } public bool Equals(System.ReadOnlySpan span) { throw null; } public bool Equals(System.Text.StringBuilder sb) { throw null; } public System.Text.StringBuilder Insert(int index, bool value) { throw null; } public System.Text.StringBuilder Insert(int index, byte value) { throw null; } public System.Text.StringBuilder Insert(int index, char value) { throw null; } public System.Text.StringBuilder Insert(int index, char[] value) { throw null; } public System.Text.StringBuilder Insert(int index, char[] value, int startIndex, int charCount) { throw null; } public System.Text.StringBuilder Insert(int index, decimal value) { throw null; } public System.Text.StringBuilder Insert(int index, double value) { throw null; } public System.Text.StringBuilder Insert(int index, short value) { throw null; } public System.Text.StringBuilder Insert(int index, int value) { throw null; } public System.Text.StringBuilder Insert(int index, long value) { throw null; } public System.Text.StringBuilder Insert(int index, object value) { throw null; } public System.Text.StringBuilder Insert(int index, System.ReadOnlySpan value) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Insert(int index, sbyte value) { throw null; } public System.Text.StringBuilder Insert(int index, float value) { throw null; } public System.Text.StringBuilder Insert(int index, string value) { throw null; } public System.Text.StringBuilder Insert(int index, string value, int count) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Insert(int index, ushort value) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Insert(int index, uint value) { throw null; } [System.CLSCompliantAttribute(false)] public System.Text.StringBuilder Insert(int index, ulong value) { throw null; } public System.Text.StringBuilder Remove(int startIndex, int length) { throw null; } public System.Text.StringBuilder Replace(char oldChar, char newChar) { throw null; } public System.Text.StringBuilder Replace(char oldChar, char newChar, int startIndex, int count) { throw null; } public System.Text.StringBuilder Replace(string oldValue, string newValue) { throw null; } public System.Text.StringBuilder Replace(string oldValue, string newValue, int startIndex, int count) { throw null; } void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public override string ToString() { throw null; } public string ToString(int startIndex, int length) { throw null; } } [System.SerializableAttribute] public partial class UnicodeEncoding : System.Text.Encoding { public const int CharSize = 2; public UnicodeEncoding() { } public UnicodeEncoding(bool bigEndian, bool byteOrderMark) { } public UnicodeEncoding(bool bigEndian, bool byteOrderMark, bool throwOnInvalidBytes) { } public override System.ReadOnlySpan Preamble { get { throw null; } } public override bool Equals(object value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetByteCount(char* chars, int count) { throw null; } public override int GetByteCount(char[] chars, int index, int count) { throw null; } public override int GetByteCount(string s) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; } public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } public override int GetBytes(string s, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetCharCount(byte* bytes, int count) { throw null; } public override int GetCharCount(byte[] bytes, int index, int count) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; } public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) { throw null; } public override System.Text.Decoder GetDecoder() { throw null; } public override System.Text.Encoder GetEncoder() { throw null; } public override int GetHashCode() { throw null; } public override int GetMaxByteCount(int charCount) { throw null; } public override int GetMaxCharCount(int byteCount) { throw null; } public override byte[] GetPreamble() { throw null; } public override string GetString(byte[] bytes, int index, int count) { throw null; } } [System.SerializableAttribute] public sealed partial class UTF32Encoding : System.Text.Encoding { public UTF32Encoding() { } public UTF32Encoding(bool bigEndian, bool byteOrderMark) { } public UTF32Encoding(bool bigEndian, bool byteOrderMark, bool throwOnInvalidCharacters) { } public override System.ReadOnlySpan Preamble { get { throw null; } } public override bool Equals(object value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetByteCount(char* chars, int count) { throw null; } public override int GetByteCount(char[] chars, int index, int count) { throw null; } public override int GetByteCount(string s) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; } public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } public override int GetBytes(string s, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetCharCount(byte* bytes, int count) { throw null; } public override int GetCharCount(byte[] bytes, int index, int count) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; } public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) { throw null; } public override System.Text.Decoder GetDecoder() { throw null; } public override System.Text.Encoder GetEncoder() { throw null; } public override int GetHashCode() { throw null; } public override int GetMaxByteCount(int charCount) { throw null; } public override int GetMaxCharCount(int byteCount) { throw null; } public override byte[] GetPreamble() { throw null; } public override string GetString(byte[] bytes, int index, int count) { throw null; } } [System.SerializableAttribute] public partial class UTF7Encoding : System.Text.Encoding { public UTF7Encoding() { } public UTF7Encoding(bool allowOptionals) { } public override bool Equals(object value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetByteCount(char* chars, int count) { throw null; } public override int GetByteCount(char[] chars, int index, int count) { throw null; } public override int GetByteCount(string s) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; } public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } public override int GetBytes(string s, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetCharCount(byte* bytes, int count) { throw null; } public override int GetCharCount(byte[] bytes, int index, int count) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; } public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) { throw null; } public override System.Text.Decoder GetDecoder() { throw null; } public override System.Text.Encoder GetEncoder() { throw null; } public override int GetHashCode() { throw null; } public override int GetMaxByteCount(int charCount) { throw null; } public override int GetMaxCharCount(int byteCount) { throw null; } public override string GetString(byte[] bytes, int index, int count) { throw null; } } [System.SerializableAttribute] public partial class UTF8Encoding : System.Text.Encoding { public UTF8Encoding() { } public UTF8Encoding(bool encoderShouldEmitUTF8Identifier) { } public UTF8Encoding(bool encoderShouldEmitUTF8Identifier, bool throwOnInvalidBytes) { } public override System.ReadOnlySpan Preamble { get { throw null; } } public override bool Equals(object value) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetByteCount(char* chars, int count) { throw null; } public override int GetByteCount(char[] chars, int index, int count) { throw null; } public override int GetByteCount(string chars) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; } public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } public override int GetBytes(string s, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetCharCount(byte* bytes, int count) { throw null; } public override int GetCharCount(byte[] bytes, int index, int count) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe override int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; } public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) { throw null; } public override System.Text.Decoder GetDecoder() { throw null; } public override System.Text.Encoder GetEncoder() { throw null; } public override int GetHashCode() { throw null; } public override int GetMaxByteCount(int charCount) { throw null; } public override int GetMaxCharCount(int byteCount) { throw null; } public override byte[] GetPreamble() { throw null; } public override string GetString(byte[] bytes, int index, int count) { throw null; } } } namespace System.Threading { [System.SerializableAttribute] public partial class AbandonedMutexException : System.SystemException { public AbandonedMutexException() { } public AbandonedMutexException(int location, System.Threading.WaitHandle handle) { } protected AbandonedMutexException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public AbandonedMutexException(string message) { } public AbandonedMutexException(string message, System.Exception inner) { } public AbandonedMutexException(string message, System.Exception inner, int location, System.Threading.WaitHandle handle) { } public AbandonedMutexException(string message, int location, System.Threading.WaitHandle handle) { } public System.Threading.Mutex Mutex { get { throw null; } } public int MutexIndex { get { throw null; } } } public enum ApartmentState { MTA = 1, STA = 0, Unknown = 2, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct AsyncFlowControl : System.IDisposable { private object _dummy; private int _dummyPrimitive; public void Dispose() { } public override bool Equals(object obj) { throw null; } public bool Equals(System.Threading.AsyncFlowControl obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Threading.AsyncFlowControl a, System.Threading.AsyncFlowControl b) { throw null; } public static bool operator !=(System.Threading.AsyncFlowControl a, System.Threading.AsyncFlowControl b) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public void Undo() { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct AsyncLocalValueChangedArgs { private readonly T _PreviousValue_k__BackingField; private readonly T _CurrentValue_k__BackingField; private readonly int _dummyPrimitive; public T CurrentValue { get { throw null; } } public T PreviousValue { get { throw null; } } public bool ThreadContextChanged { get { throw null; } } } public sealed partial class AsyncLocal { public AsyncLocal() { } public AsyncLocal(System.Action> valueChangedHandler) { } public T Value { get { throw null; } set { } } } public sealed partial class AutoResetEvent : System.Threading.EventWaitHandle { public AutoResetEvent(bool initialState) : base (default(bool), default(System.Threading.EventResetMode)) { } } [System.Diagnostics.DebuggerDisplayAttribute("IsCancellationRequested = {IsCancellationRequested}")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct CancellationToken { private readonly object _dummy; public CancellationToken(bool canceled) { throw null; } public bool CanBeCanceled { get { throw null; } } public bool IsCancellationRequested { get { throw null; } } public static System.Threading.CancellationToken None { get { throw null; } } public System.Threading.WaitHandle WaitHandle { get { throw null; } } public override bool Equals(object other) { throw null; } public bool Equals(System.Threading.CancellationToken other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Threading.CancellationToken left, System.Threading.CancellationToken right) { throw null; } public static bool operator !=(System.Threading.CancellationToken left, System.Threading.CancellationToken right) { throw null; } public System.Threading.CancellationTokenRegistration Register(System.Action callback) { throw null; } public System.Threading.CancellationTokenRegistration Register(System.Action callback, bool useSynchronizationContext) { throw null; } public System.Threading.CancellationTokenRegistration Register(System.Action callback, object state) { throw null; } public System.Threading.CancellationTokenRegistration Register(System.Action callback, object state, bool useSynchronizationContext) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public System.Threading.CancellationTokenRegistration Register(System.Action callback, object state, bool useSynchronizationContext, bool useExecutionContext) { throw null; } public void ThrowIfCancellationRequested() { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct CancellationTokenRegistration : System.IDisposable, System.IEquatable { private readonly object _dummy; public System.Threading.CancellationToken Token { get { throw null; } } public void Dispose() { } public override bool Equals(object obj) { throw null; } public bool Equals(System.Threading.CancellationTokenRegistration other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Threading.CancellationTokenRegistration left, System.Threading.CancellationTokenRegistration right) { throw null; } public static bool operator !=(System.Threading.CancellationTokenRegistration left, System.Threading.CancellationTokenRegistration right) { throw null; } public bool Unregister() { throw null; } } public partial class CancellationTokenSource : System.IDisposable { public CancellationTokenSource() { } public CancellationTokenSource(int millisecondsDelay) { } public CancellationTokenSource(System.TimeSpan delay) { } public bool IsCancellationRequested { get { throw null; } } public System.Threading.CancellationToken Token { get { throw null; } } public void Cancel() { } public void Cancel(bool throwOnFirstException) { } public void CancelAfter(int millisecondsDelay) { } public void CancelAfter(System.TimeSpan delay) { } public static System.Threading.CancellationTokenSource CreateLinkedTokenSource(System.Threading.CancellationToken token1, System.Threading.CancellationToken token2) { throw null; } public static System.Threading.CancellationTokenSource CreateLinkedTokenSource(params System.Threading.CancellationToken[] tokens) { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } } [System.SerializableAttribute] public sealed partial class CompressedStack : System.Runtime.Serialization.ISerializable { internal CompressedStack() { } public static System.Threading.CompressedStack Capture() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.Threading.CompressedStack CreateCopy() { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Threading.CompressedStack GetCompressedStack() { throw null; } [System.MonoTODOAttribute("incomplete")] [System.Security.SecurityCriticalAttribute] public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } [System.Security.SecurityCriticalAttribute] public static void Run(System.Threading.CompressedStack compressedStack, System.Threading.ContextCallback callback, object state) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate void ContextCallback(object state); [System.Diagnostics.DebuggerDisplayAttribute("Initial Count={InitialCount}, Current Count={CurrentCount}")] public partial class CountdownEvent : System.IDisposable { public CountdownEvent(int initialCount) { } public int CurrentCount { get { throw null; } } public int InitialCount { get { throw null; } } public bool IsSet { get { throw null; } } public System.Threading.WaitHandle WaitHandle { get { throw null; } } public void AddCount() { } public void AddCount(int signalCount) { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public void Reset() { } public void Reset(int count) { } public bool Signal() { throw null; } public bool Signal(int signalCount) { throw null; } public bool TryAddCount() { throw null; } public bool TryAddCount(int signalCount) { throw null; } public void Wait() { } public bool Wait(int millisecondsTimeout) { throw null; } public bool Wait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; } public void Wait(System.Threading.CancellationToken cancellationToken) { } public bool Wait(System.TimeSpan timeout) { throw null; } public bool Wait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken) { throw null; } } public enum EventResetMode { AutoReset = 0, ManualReset = 1, } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] public partial class EventWaitHandle : System.Threading.WaitHandle { [System.Security.SecuritySafeCriticalAttribute] public EventWaitHandle(bool initialState, System.Threading.EventResetMode mode) { } [System.Security.SecurityCriticalAttribute] public EventWaitHandle(bool initialState, System.Threading.EventResetMode mode, string name) { } [System.Security.SecurityCriticalAttribute] public EventWaitHandle(bool initialState, System.Threading.EventResetMode mode, string name, out bool createdNew) { throw null; } [System.Security.SecurityCriticalAttribute] public EventWaitHandle(bool initialState, System.Threading.EventResetMode mode, string name, out bool createdNew, System.Security.AccessControl.EventWaitHandleSecurity eventSecurity) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public System.Security.AccessControl.EventWaitHandleSecurity GetAccessControl() { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Threading.EventWaitHandle OpenExisting(string name) { throw null; } [System.Security.SecurityCriticalAttribute] public static System.Threading.EventWaitHandle OpenExisting(string name, System.Security.AccessControl.EventWaitHandleRights rights) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public bool Reset() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public bool Set() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public void SetAccessControl(System.Security.AccessControl.EventWaitHandleSecurity eventSecurity) { } [System.Security.SecurityCriticalAttribute] public static bool TryOpenExisting(string name, System.Security.AccessControl.EventWaitHandleRights rights, out System.Threading.EventWaitHandle result) { throw null; } [System.Security.SecurityCriticalAttribute] public static bool TryOpenExisting(string name, out System.Threading.EventWaitHandle result) { throw null; } } [System.SerializableAttribute] public sealed partial class ExecutionContext : System.IDisposable, System.Runtime.Serialization.ISerializable { internal ExecutionContext() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static System.Threading.ExecutionContext Capture() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public System.Threading.ExecutionContext CreateCopy() { throw null; } public void Dispose() { } [System.Security.SecurityCriticalAttribute] public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public static bool IsFlowSuppressed() { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static void RestoreFlow() { } [System.Security.SecurityCriticalAttribute] public static void Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) { } [System.Security.SecurityCriticalAttribute] public static System.Threading.AsyncFlowControl SuppressFlow() { throw null; } } [System.MonoTODOAttribute("Useless until the runtime supports it")] public partial class HostExecutionContext : System.IDisposable { public HostExecutionContext() { } public HostExecutionContext(object state) { } protected internal object State { get { throw null; } set { } } public virtual System.Threading.HostExecutionContext CreateCopy() { throw null; } public void Dispose() { } public virtual void Dispose(bool disposing) { } } public partial class HostExecutionContextManager { public HostExecutionContextManager() { } [System.MonoTODOAttribute] public virtual System.Threading.HostExecutionContext Capture() { throw null; } [System.MonoTODOAttribute] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public virtual void Revert(object previousState) { } [System.MonoTODOAttribute] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Infrastructure=true)] public virtual object SetHostExecutionContext(System.Threading.HostExecutionContext hostExecutionContext) { throw null; } } public static partial class Interlocked { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int Add(ref int location1, int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static long Add(ref long location1, long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double CompareExchange(ref double location1, double value, double comparand) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int CompareExchange(ref int location1, int value, int comparand) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long CompareExchange(ref long location1, long value, long comparand) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.IntPtr CompareExchange(ref System.IntPtr location1, System.IntPtr value, System.IntPtr comparand) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static object CompareExchange(ref object location1, object value, object comparand) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float CompareExchange(ref float location1, float value, float comparand) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static T CompareExchange(ref T location1, T value, T comparand) where T : class { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int Decrement(ref int location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long Decrement(ref long location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double Exchange(ref double location1, double value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int Exchange(ref int location1, int value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long Exchange(ref long location1, long value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.IntPtr Exchange(ref System.IntPtr location1, System.IntPtr value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static object Exchange(ref object location1, object value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float Exchange(ref float location1, float value) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public static T Exchange(ref T location1, T value) where T : class { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int Increment(ref int location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static long Increment(ref long location) { throw null; } public static void MemoryBarrier() { } public static void MemoryBarrierProcessWide() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long Read(ref long location) { throw null; } } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Security.SecurityCriticalAttribute] public unsafe delegate void IOCompletionCallback(uint errorCode, uint numBytes, System.Threading.NativeOverlapped* pOVERLAP); public static partial class LazyInitializer { public static T EnsureInitialized(ref T target) where T : class { throw null; } public static T EnsureInitialized(ref T target, ref bool initialized, ref object syncLock) { throw null; } public static T EnsureInitialized(ref T target, ref bool initialized, ref object syncLock, System.Func valueFactory) { throw null; } public static T EnsureInitialized(ref T target, System.Func valueFactory) where T : class { throw null; } public static T EnsureInitialized(ref T target, ref object syncLock, System.Func valueFactory) where T : class { throw null; } } public enum LazyThreadSafetyMode { ExecutionAndPublication = 2, None = 0, PublicationOnly = 1, } public partial class Lock { public Lock() { } public void Acquire() { } public void Release() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct LockCookie { private int _dummyPrimitive; public override bool Equals(object obj) { throw null; } public bool Equals(System.Threading.LockCookie obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Threading.LockCookie a, System.Threading.LockCookie b) { throw null; } public static bool operator !=(System.Threading.LockCookie a, System.Threading.LockCookie b) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct LockHolder : System.IDisposable { private object _dummy; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public void Dispose() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public static System.Threading.LockHolder Hold(System.Threading.Lock l) { throw null; } } [System.SerializableAttribute] public partial class LockRecursionException : System.Exception { public LockRecursionException() { } protected LockRecursionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public LockRecursionException(string message) { } public LockRecursionException(string message, System.Exception innerException) { } } public sealed partial class ManualResetEvent : System.Threading.EventWaitHandle { public ManualResetEvent(bool initialState) : base (default(bool), default(System.Threading.EventResetMode)) { } } [System.Diagnostics.DebuggerDisplayAttribute("Set = {IsSet}")] public partial class ManualResetEventSlim : System.IDisposable { public ManualResetEventSlim() { } public ManualResetEventSlim(bool initialState) { } public ManualResetEventSlim(bool initialState, int spinCount) { } public bool IsSet { get { throw null; } } public int SpinCount { get { throw null; } } public System.Threading.WaitHandle WaitHandle { get { throw null; } } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public void Reset() { } public void Set() { } public void Wait() { } public bool Wait(int millisecondsTimeout) { throw null; } public bool Wait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; } public void Wait(System.Threading.CancellationToken cancellationToken) { } public bool Wait(System.TimeSpan timeout) { throw null; } public bool Wait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken) { throw null; } } public static partial class Monitor { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void Enter(object obj) { } public static void Enter(object obj, ref bool lockTaken) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] [System.Security.SecuritySafeCriticalAttribute] public static void Exit(object obj) { } [System.Security.SecuritySafeCriticalAttribute] public static bool IsEntered(object obj) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static void Pulse(object obj) { } [System.Security.SecuritySafeCriticalAttribute] public static void PulseAll(object obj) { } public static bool TryEnter(object obj) { throw null; } public static void TryEnter(object obj, ref bool lockTaken) { } public static bool TryEnter(object obj, int millisecondsTimeout) { throw null; } public static void TryEnter(object obj, int millisecondsTimeout, ref bool lockTaken) { } public static bool TryEnter(object obj, System.TimeSpan timeout) { throw null; } public static void TryEnter(object obj, System.TimeSpan timeout, ref bool lockTaken) { } public static bool Wait(object obj) { throw null; } public static bool Wait(object obj, int millisecondsTimeout) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static bool Wait(object obj, int millisecondsTimeout, bool exitContext) { throw null; } public static bool Wait(object obj, System.TimeSpan timeout) { throw null; } public static bool Wait(object obj, System.TimeSpan timeout, bool exitContext) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class Mutex : System.Threading.WaitHandle { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public Mutex() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public Mutex(bool initiallyOwned) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)] public Mutex(bool initiallyOwned, string name) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, UnmanagedCode=true)] public Mutex(bool initiallyOwned, string name, out bool createdNew) { throw null; } [System.MonoTODOAttribute("Use MutexSecurity in CreateMutex_internal")] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public Mutex(bool initiallyOwned, string name, out bool createdNew, System.Security.AccessControl.MutexSecurity mutexSecurity) { throw null; } public System.Security.AccessControl.MutexSecurity GetAccessControl() { throw null; } public static System.Threading.Mutex OpenExisting(string name) { throw null; } public static System.Threading.Mutex OpenExisting(string name, System.Security.AccessControl.MutexRights rights) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public void ReleaseMutex() { } public void SetAccessControl(System.Security.AccessControl.MutexSecurity mutexSecurity) { } public static bool TryOpenExisting(string name, System.Security.AccessControl.MutexRights rights, out System.Threading.Mutex result) { throw null; } public static bool TryOpenExisting(string name, out System.Threading.Mutex result) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct NativeOverlapped { public System.IntPtr EventHandle; public System.IntPtr InternalHigh; public System.IntPtr InternalLow; public int OffsetHigh; public int OffsetLow; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class Overlapped { public Overlapped() { } [System.ObsoleteAttribute("Not 64bit compatible. Please use the constructor that takes IntPtr for the event handle")] public Overlapped(int offsetLo, int offsetHi, int hEvent, System.IAsyncResult ar) { } public Overlapped(int offsetLo, int offsetHi, System.IntPtr hEvent, System.IAsyncResult ar) { } public System.IAsyncResult AsyncResult { get { throw null; } set { } } [System.ObsoleteAttribute("Not 64bit compatible. Use EventHandleIntPtr instead.")] public int EventHandle { get { throw null; } set { } } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public System.IntPtr EventHandleIntPtr { get { throw null; } set { } } public int OffsetHigh { get { throw null; } set { } } public int OffsetLow { get { throw null; } set { } } [System.CLSCompliantAttribute(false)] public unsafe static void Free(System.Threading.NativeOverlapped* nativeOverlappedPtr) { } [System.CLSCompliantAttribute(false)] [System.MonoTODOAttribute("Security - we need to propagate the call stack")] [System.ObsoleteAttribute("Use Pack(iocb, userData) instead")] public unsafe System.Threading.NativeOverlapped* Pack(System.Threading.IOCompletionCallback iocb) { throw null; } [System.CLSCompliantAttribute(false)] [System.MonoTODOAttribute("handle userData")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public unsafe System.Threading.NativeOverlapped* Pack(System.Threading.IOCompletionCallback iocb, object userData) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe static System.Threading.Overlapped Unpack(System.Threading.NativeOverlapped* nativeOverlappedPtr) { throw null; } [System.CLSCompliantAttribute(false)] [System.ObsoleteAttribute("Use UnsafePack(iocb, userData) instead")] [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)] public unsafe System.Threading.NativeOverlapped* UnsafePack(System.Threading.IOCompletionCallback iocb) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.InteropServices.ComVisibleAttribute(false)] public unsafe System.Threading.NativeOverlapped* UnsafePack(System.Threading.IOCompletionCallback iocb, object userData) { throw null; } } public delegate void ParameterizedThreadStart(object obj); public sealed partial class PreAllocatedOverlapped : System.IDisposable { [System.CLSCompliantAttribute(false)] public PreAllocatedOverlapped(System.Threading.IOCompletionCallback callback, object state, object pinData) { } public void Dispose() { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class ReaderWriterLock : System.Runtime.ConstrainedExecution.CriticalFinalizerObject { public ReaderWriterLock() { } public bool IsReaderLockHeld { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public bool IsWriterLockHeld { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public int WriterSeqNum { get { throw null; } } public void AcquireReaderLock(int millisecondsTimeout) { } public void AcquireReaderLock(System.TimeSpan timeout) { } public void AcquireWriterLock(int millisecondsTimeout) { } public void AcquireWriterLock(System.TimeSpan timeout) { } public bool AnyWritersSince(int seqNum) { throw null; } public void DowngradeFromWriterLock(ref System.Threading.LockCookie lockCookie) { } ~ReaderWriterLock() { } public System.Threading.LockCookie ReleaseLock() { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public void ReleaseReaderLock() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public void ReleaseWriterLock() { } public void RestoreLock(ref System.Threading.LockCookie lockCookie) { } public System.Threading.LockCookie UpgradeToWriterLock(int millisecondsTimeout) { throw null; } public System.Threading.LockCookie UpgradeToWriterLock(System.TimeSpan timeout) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class RegisteredWaitHandle : System.MarshalByRefObject { internal RegisteredWaitHandle() { } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public bool Unregister(System.Threading.WaitHandle waitObject) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")] [System.SerializableAttribute] public partial class SemaphoreFullException : System.SystemException { public SemaphoreFullException() { } protected SemaphoreFullException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SemaphoreFullException(string message) { } public SemaphoreFullException(string message, System.Exception innerException) { } } [System.Diagnostics.DebuggerDisplayAttribute("Current Count = {m_currentCount}")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] public partial class SemaphoreSlim : System.IDisposable { public SemaphoreSlim(int initialCount) { } public SemaphoreSlim(int initialCount, int maxCount) { } public System.Threading.WaitHandle AvailableWaitHandle { get { throw null; } } public int CurrentCount { get { throw null; } } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public int Release() { throw null; } public int Release(int releaseCount) { throw null; } public void Wait() { } public bool Wait(int millisecondsTimeout) { throw null; } public bool Wait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; } public void Wait(System.Threading.CancellationToken cancellationToken) { } public bool Wait(System.TimeSpan timeout) { throw null; } public bool Wait(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task WaitAsync() { throw null; } public System.Threading.Tasks.Task WaitAsync(int millisecondsTimeout) { throw null; } public System.Threading.Tasks.Task WaitAsync(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task WaitAsync(System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task WaitAsync(System.TimeSpan timeout) { throw null; } public System.Threading.Tasks.Task WaitAsync(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken) { throw null; } } public delegate void SendOrPostCallback(object state); [System.Diagnostics.DebuggerDisplayAttribute("IsHeld = {IsHeld}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Threading.SpinLock.SystemThreading_SpinLockDebugView")] [System.Runtime.InteropServices.ComVisibleAttribute(false)] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct SpinLock { private int _dummyPrimitive; public SpinLock(bool enableThreadOwnerTracking) { throw null; } public bool IsHeld { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public bool IsHeldByCurrentThread { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public bool IsThreadOwnerTrackingEnabled { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public void Enter(ref bool lockTaken) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public void Exit() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public void Exit(bool useMemoryBarrier) { } public void TryEnter(ref bool lockTaken) { } public void TryEnter(int millisecondsTimeout, ref bool lockTaken) { } public void TryEnter(System.TimeSpan timeout, ref bool lockTaken) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct SpinWait { private int _dummyPrimitive; public int Count { get { throw null; } } public bool NextSpinWillYield { get { throw null; } } public void Reset() { } public void SpinOnce() { } public void SpinOnce(int sleep1Threshold) { } public static void SpinUntil(System.Func condition) { } public static bool SpinUntil(System.Func condition, int millisecondsTimeout) { throw null; } public static bool SpinUntil(System.Func condition, System.TimeSpan timeout) { throw null; } } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Flags=System.Security.Permissions.SecurityPermissionFlag.ControlEvidence | System.Security.Permissions.SecurityPermissionFlag.ControlPolicy)] public partial class SynchronizationContext { public SynchronizationContext() { } public static System.Threading.SynchronizationContext Current { get { throw null; } } public virtual System.Threading.SynchronizationContext CreateCopy() { throw null; } public bool IsWaitNotificationRequired() { throw null; } public virtual void OperationCompleted() { } public virtual void OperationStarted() { } public virtual void Post(System.Threading.SendOrPostCallback d, object state) { } public virtual void Send(System.Threading.SendOrPostCallback d, object state) { } [System.Security.SecurityCriticalAttribute] public static void SetSynchronizationContext(System.Threading.SynchronizationContext syncContext) { } [System.Security.SecuritySafeCriticalAttribute] protected void SetWaitNotificationRequired() { } [System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute] [System.Security.SecurityCriticalAttribute] public virtual int Wait(System.IntPtr[] waitHandles, bool waitAll, int millisecondsTimeout) { throw null; } [System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] [System.Security.SecurityCriticalAttribute] protected static int WaitHelper(System.IntPtr[] waitHandles, bool waitAll, int millisecondsTimeout) { throw null; } } [System.SerializableAttribute] public partial class SynchronizationLockException : System.SystemException { public SynchronizationLockException() { } protected SynchronizationLockException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public SynchronizationLockException(string message) { } public SynchronizationLockException(string message, System.Exception innerException) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public sealed partial class Thread : System.Runtime.ConstrainedExecution.CriticalFinalizerObject, System.Runtime.InteropServices._Thread { [System.Security.SecuritySafeCriticalAttribute] public Thread(System.Threading.ParameterizedThreadStart start) { } [System.Security.SecuritySafeCriticalAttribute] public Thread(System.Threading.ParameterizedThreadStart start, int maxStackSize) { } [System.Security.SecuritySafeCriticalAttribute] public Thread(System.Threading.ThreadStart start) { } [System.Security.SecuritySafeCriticalAttribute] public Thread(System.Threading.ThreadStart start, int maxStackSize) { } [System.ObsoleteAttribute("Deprecated in favor of GetApartmentState, SetApartmentState and TrySetApartmentState.")] public System.Threading.ApartmentState ApartmentState { get { throw null; } set { } } public static System.Runtime.Remoting.Contexts.Context CurrentContext { get { throw null; } } public System.Globalization.CultureInfo CurrentCulture { get { throw null; } [System.Security.SecuritySafeCriticalAttribute]set { } } public static System.Security.Principal.IPrincipal CurrentPrincipal { get { throw null; } set { } } public static System.Threading.Thread CurrentThread { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)]get { throw null; } } public System.Globalization.CultureInfo CurrentUICulture { get { throw null; } set { } } public System.Threading.ExecutionContext ExecutionContext { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail), System.Security.SecuritySafeCriticalAttribute]get { throw null; } } public bool IsAlive { get { throw null; } } public bool IsBackground { get { throw null; } set { } } public bool IsThreadPoolThread { get { throw null; } } public int ManagedThreadId { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)]get { throw null; } } public string Name { get { throw null; } set { } } public System.Threading.ThreadPriority Priority { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } set { } } public System.Threading.ThreadState ThreadState { get { throw null; } } public void Abort() { } public void Abort(object stateInfo) { } public static System.LocalDataStoreSlot AllocateDataSlot() { throw null; } public static System.LocalDataStoreSlot AllocateNamedDataSlot(string name) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void BeginCriticalRegion() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void BeginThreadAffinity() { } public void DisableComObjectEagerCleanup() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void EndCriticalRegion() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static void EndThreadAffinity() { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] ~Thread() { } public static void FreeNamedDataSlot(string name) { } public System.Threading.ApartmentState GetApartmentState() { throw null; } [System.ObsoleteAttribute("Thread.GetCompressedStack is no longer supported. Please use the System.Threading.CompressedStack class")] [System.Security.SecurityCriticalAttribute] public System.Threading.CompressedStack GetCompressedStack() { throw null; } public static int GetCurrentProcessorId() { throw null; } public static object GetData(System.LocalDataStoreSlot slot) { throw null; } public static System.AppDomain GetDomain() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static int GetDomainID() { throw null; } [System.Runtime.InteropServices.ComVisibleAttribute(false)] public override int GetHashCode() { throw null; } public static System.LocalDataStoreSlot GetNamedDataSlot(string name) { throw null; } public void Interrupt() { } public void Join() { } public bool Join(int millisecondsTimeout) { throw null; } public bool Join(System.TimeSpan timeout) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void MemoryBarrier() { } public static void ResetAbort() { } [System.ObsoleteAttribute("Thread.Resume has been deprecated. Please use other classes in System.Threading, such as Monitor, Mutex, Event, and Semaphore, to synchronize Threads or protect resources. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Security.SecuritySafeCriticalAttribute] public void Resume() { } public void SetApartmentState(System.Threading.ApartmentState state) { } [System.ObsoleteAttribute("Thread.SetCompressedStack is no longer supported. Please use the System.Threading.CompressedStack class")] public void SetCompressedStack(System.Threading.CompressedStack stack) { } public static void SetData(System.LocalDataStoreSlot slot, object data) { } [System.Security.SecuritySafeCriticalAttribute] public static void Sleep(int millisecondsTimeout) { } public static void Sleep(System.TimeSpan timeout) { } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void SpinWait(int iterations) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public void Start() { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]public void Start(object parameter) { } [System.ObsoleteAttribute("Thread.Suspend has been deprecated. Please use other classes in System.Threading, such as Monitor, Mutex, Event, and Semaphore, to synchronize Threads or protect resources. http://go.microsoft.com/fwlink/?linkid=14202", false)] [System.Security.SecuritySafeCriticalAttribute] public void Suspend() { } void System.Runtime.InteropServices._Thread.GetIDsOfNames([System.Runtime.InteropServices.In]ref System.Guid riid, System.IntPtr rgszNames, uint cNames, uint lcid, System.IntPtr rgDispId) { } void System.Runtime.InteropServices._Thread.GetTypeInfo(uint iTInfo, uint lcid, System.IntPtr ppTInfo) { } void System.Runtime.InteropServices._Thread.GetTypeInfoCount(out uint pcTInfo) { throw null; } void System.Runtime.InteropServices._Thread.Invoke(uint dispIdMember, [System.Runtime.InteropServices.In]ref System.Guid riid, uint lcid, short wFlags, System.IntPtr pDispParams, System.IntPtr pVarResult, System.IntPtr pExcepInfo, System.IntPtr puArgErr) { } public bool TrySetApartmentState(System.Threading.ApartmentState state) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static byte VolatileRead(ref byte address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static double VolatileRead(ref double address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static short VolatileRead(ref short address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static int VolatileRead(ref int address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static long VolatileRead(ref long address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static System.IntPtr VolatileRead(ref System.IntPtr address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static object VolatileRead(ref object address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static sbyte VolatileRead(ref sbyte address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static float VolatileRead(ref float address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static ushort VolatileRead(ref ushort address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static uint VolatileRead(ref uint address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static ulong VolatileRead(ref ulong address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static System.UIntPtr VolatileRead(ref System.UIntPtr address) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref byte address, byte value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref double address, double value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref short address, short value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref int address, int value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref long address, long value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref System.IntPtr address, System.IntPtr value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref object address, object value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static void VolatileWrite(ref sbyte address, sbyte value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]public static void VolatileWrite(ref float address, float value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static void VolatileWrite(ref ushort address, ushort value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static void VolatileWrite(ref uint address, uint value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static void VolatileWrite(ref ulong address, ulong value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] public static void VolatileWrite(ref System.UIntPtr address, System.UIntPtr value) { } public static bool Yield() { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public sealed partial class ThreadAbortException : System.SystemException { internal ThreadAbortException() { } public object ExceptionState { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.SerializableAttribute] public partial class ThreadInterruptedException : System.SystemException { public ThreadInterruptedException() { } protected ThreadInterruptedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ThreadInterruptedException(string message) { } public ThreadInterruptedException(string message, System.Exception innerException) { } } [System.Diagnostics.DebuggerDisplayAttribute("IsValueCreated={IsValueCreated}, Value={ValueForDebugDisplay}, Count={ValuesCountForDebugDisplay}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Threading.SystemThreading_ThreadLocalDebugView")] [System.Security.Permissions.HostProtectionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Synchronization=true, ExternalThreading=true)] public partial class ThreadLocal : System.IDisposable { public ThreadLocal() { } public ThreadLocal(bool trackAllValues) { } public ThreadLocal(System.Func valueFactory) { } public ThreadLocal(System.Func valueFactory, bool trackAllValues) { } public bool IsValueCreated { get { throw null; } } [System.Diagnostics.DebuggerBrowsableAttribute(System.Diagnostics.DebuggerBrowsableState.Never)] public T Value { get { throw null; } set { } } public System.Collections.Generic.IList Values { get { throw null; } } public void Dispose() { } protected virtual void Dispose(bool disposing) { } ~ThreadLocal() { } public override string ToString() { throw null; } } public static partial class ThreadPool { [System.ObsoleteAttribute("ThreadPool.BindHandle(IntPtr) has been deprecated. Please use ThreadPool.BindHandle(SafeHandle) instead.", false)] [System.Security.SecuritySafeCriticalAttribute] public static bool BindHandle(System.IntPtr osHandle) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static bool BindHandle(System.Runtime.InteropServices.SafeHandle osHandle) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static void GetAvailableThreads(out int workerThreads, out int completionPortThreads) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static void GetMaxThreads(out int workerThreads, out int completionPortThreads) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static void GetMinThreads(out int workerThreads, out int completionPortThreads) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static bool QueueUserWorkItem(System.Threading.WaitCallback callBack) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static bool QueueUserWorkItem(System.Threading.WaitCallback callBack, object state) { throw null; } public static bool QueueUserWorkItem(System.Action callBack, TState state, bool preferLocal) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static System.Threading.RegisteredWaitHandle RegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, int millisecondsTimeOutInterval, bool executeOnlyOnce) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static System.Threading.RegisteredWaitHandle RegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, long millisecondsTimeOutInterval, bool executeOnlyOnce) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecuritySafeCriticalAttribute] public static System.Threading.RegisteredWaitHandle RegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, System.TimeSpan timeout, bool executeOnlyOnce) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.CLSCompliantAttribute(false)] [System.Security.SecuritySafeCriticalAttribute] public static System.Threading.RegisteredWaitHandle RegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, uint millisecondsTimeOutInterval, bool executeOnlyOnce) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static bool SetMaxThreads(int workerThreads, int completionPortThreads) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static bool SetMinThreads(int workerThreads, int completionPortThreads) { throw null; } [System.CLSCompliantAttribute(false)] [System.Security.SecurityCriticalAttribute] public unsafe static bool UnsafeQueueNativeOverlapped(System.Threading.NativeOverlapped* overlapped) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecurityCriticalAttribute] public static bool UnsafeQueueUserWorkItem(System.Threading.WaitCallback callBack, object state) { throw null; } public static bool UnsafeQueueUserWorkItem(System.Action callBack, TState state, bool preferLocal) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecurityCriticalAttribute] public static System.Threading.RegisteredWaitHandle UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, int millisecondsTimeOutInterval, bool executeOnlyOnce) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecurityCriticalAttribute] public static System.Threading.RegisteredWaitHandle UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, long millisecondsTimeOutInterval, bool executeOnlyOnce) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.Security.SecurityCriticalAttribute] public static System.Threading.RegisteredWaitHandle UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, System.TimeSpan timeout, bool executeOnlyOnce) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)][System.CLSCompliantAttribute(false)] [System.Security.SecurityCriticalAttribute] public static System.Threading.RegisteredWaitHandle UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle waitObject, System.Threading.WaitOrTimerCallback callBack, object state, uint millisecondsTimeOutInterval, bool executeOnlyOnce) { throw null; } } public sealed partial class ThreadPoolBoundHandle : System.IDisposable { internal ThreadPoolBoundHandle() { } public System.Runtime.InteropServices.SafeHandle Handle { get { throw null; } } [System.CLSCompliantAttribute(false)] public unsafe System.Threading.NativeOverlapped* AllocateNativeOverlapped(System.Threading.IOCompletionCallback callback, object state, object pinData) { throw null; } [System.CLSCompliantAttribute(false)] public unsafe System.Threading.NativeOverlapped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; } public static System.Threading.ThreadPoolBoundHandle BindHandle(System.Runtime.InteropServices.SafeHandle handle) { throw null; } public void Dispose() { } [System.CLSCompliantAttribute(false)] public unsafe void FreeNativeOverlapped(System.Threading.NativeOverlapped* overlapped) { } [System.CLSCompliantAttribute(false)] public unsafe static object GetNativeOverlappedState(System.Threading.NativeOverlapped* overlapped) { throw null; } } public enum ThreadPriority { AboveNormal = 3, BelowNormal = 1, Highest = 4, Lowest = 0, Normal = 2, } public delegate void ThreadStart(); [System.SerializableAttribute] public sealed partial class ThreadStartException : System.SystemException { internal ThreadStartException() { } } [System.FlagsAttribute] public enum ThreadState { Aborted = 256, AbortRequested = 128, Background = 4, Running = 0, Stopped = 16, StopRequested = 1, Suspended = 64, SuspendRequested = 2, Unstarted = 8, WaitSleepJoin = 32, } [System.SerializableAttribute] public partial class ThreadStateException : System.SystemException { public ThreadStateException() { } protected ThreadStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public ThreadStateException(string message) { } public ThreadStateException(string message, System.Exception innerException) { } } public static partial class Timeout { public const int Infinite = -1; public static readonly System.TimeSpan InfiniteTimeSpan; } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed partial class Timer : System.MarshalByRefObject, System.IDisposable { public Timer(System.Threading.TimerCallback callback) { } public Timer(System.Threading.TimerCallback callback, object state, int dueTime, int period) { } public Timer(System.Threading.TimerCallback callback, object state, long dueTime, long period) { } public Timer(System.Threading.TimerCallback callback, object state, System.TimeSpan dueTime, System.TimeSpan period) { } [System.CLSCompliantAttribute(false)] public Timer(System.Threading.TimerCallback callback, object state, uint dueTime, uint period) { } public bool Change(int dueTime, int period) { throw null; } public bool Change(long dueTime, long period) { throw null; } public bool Change(System.TimeSpan dueTime, System.TimeSpan period) { throw null; } [System.CLSCompliantAttribute(false)] public bool Change(uint dueTime, uint period) { throw null; } public void Dispose() { } public bool Dispose(System.Threading.WaitHandle notifyObject) { throw null; } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate void TimerCallback(object state); public static partial class Volatile { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static bool Read(ref bool location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static byte Read(ref byte location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static double Read(ref double location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static short Read(ref short location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static int Read(ref int location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static long Read(ref long location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.IntPtr Read(ref System.IntPtr location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static sbyte Read(ref sbyte location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static float Read(ref float location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static ushort Read(ref ushort location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static uint Read(ref uint location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static ulong Read(ref ulong location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static System.UIntPtr Read(ref System.UIntPtr location) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static T Read(ref T location) where T : class { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref bool location, bool value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref byte location, byte value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref double location, double value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref short location, short value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref int location, int value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref long location, long value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref System.IntPtr location, System.IntPtr value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref sbyte location, sbyte value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref float location, float value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref ushort location, ushort value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref uint location, uint value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref ulong location, ulong value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.CLSCompliantAttribute(false)] [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref System.UIntPtr location, System.UIntPtr value) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)][System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success)] public static void Write(ref T location, T value) where T : class { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate void WaitCallback(object state); [System.Runtime.InteropServices.ComVisibleAttribute(true)] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public abstract partial class WaitHandle : System.MarshalByRefObject, System.IDisposable { protected static readonly System.IntPtr InvalidHandle; public const int WaitTimeout = 258; protected WaitHandle() { } [System.ObsoleteAttribute("Use the SafeWaitHandle property instead.")] public virtual System.IntPtr Handle { [System.Security.SecuritySafeCriticalAttribute]get { throw null; } [System.Security.SecurityCriticalAttribute]set { } } public Microsoft.Win32.SafeHandles.SafeWaitHandle SafeWaitHandle { [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail), System.Security.SecurityCriticalAttribute]get { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.Success), System.Security.SecurityCriticalAttribute]set { } } public virtual void Close() { } public void Dispose() { } [System.Security.SecuritySafeCriticalAttribute] protected virtual void Dispose(bool explicitDisposing) { } public static bool SignalAndWait(System.Threading.WaitHandle toSignal, System.Threading.WaitHandle toWaitOn) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static bool SignalAndWait(System.Threading.WaitHandle toSignal, System.Threading.WaitHandle toWaitOn, int millisecondsTimeout, bool exitContext) { throw null; } public static bool SignalAndWait(System.Threading.WaitHandle toSignal, System.Threading.WaitHandle toWaitOn, System.TimeSpan timeout, bool exitContext) { throw null; } public static bool WaitAll(System.Threading.WaitHandle[] waitHandles) { throw null; } public static bool WaitAll(System.Threading.WaitHandle[] waitHandles, int millisecondsTimeout) { throw null; } [System.Security.SecuritySafeCriticalAttribute] public static bool WaitAll(System.Threading.WaitHandle[] waitHandles, int millisecondsTimeout, bool exitContext) { throw null; } public static bool WaitAll(System.Threading.WaitHandle[] waitHandles, System.TimeSpan timeout) { throw null; } public static bool WaitAll(System.Threading.WaitHandle[] waitHandles, System.TimeSpan timeout, bool exitContext) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static int WaitAny(System.Threading.WaitHandle[] waitHandles) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static int WaitAny(System.Threading.WaitHandle[] waitHandles, int millisecondsTimeout) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] [System.Security.SecuritySafeCriticalAttribute] public static int WaitAny(System.Threading.WaitHandle[] waitHandles, int millisecondsTimeout, bool exitContext) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static int WaitAny(System.Threading.WaitHandle[] waitHandles, System.TimeSpan timeout) { throw null; } [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute(System.Runtime.ConstrainedExecution.Consistency.WillNotCorruptState, System.Runtime.ConstrainedExecution.Cer.MayFail)] public static int WaitAny(System.Threading.WaitHandle[] waitHandles, System.TimeSpan timeout, bool exitContext) { throw null; } public virtual bool WaitOne() { throw null; } public virtual bool WaitOne(int millisecondsTimeout) { throw null; } public virtual bool WaitOne(int millisecondsTimeout, bool exitContext) { throw null; } public virtual bool WaitOne(System.TimeSpan timeout) { throw null; } public virtual bool WaitOne(System.TimeSpan timeout, bool exitContext) { throw null; } } [System.SerializableAttribute] public partial class WaitHandleCannotBeOpenedException : System.ApplicationException { public WaitHandleCannotBeOpenedException() { } protected WaitHandleCannotBeOpenedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public WaitHandleCannotBeOpenedException(string message) { } public WaitHandleCannotBeOpenedException(string message, System.Exception innerException) { } } public static partial class WaitHandleExtensions { [System.Security.SecurityCriticalAttribute] public static Microsoft.Win32.SafeHandles.SafeWaitHandle GetSafeWaitHandle(this System.Threading.WaitHandle waitHandle) { throw null; } [System.Security.SecurityCriticalAttribute] public static void SetSafeWaitHandle(this System.Threading.WaitHandle waitHandle, Microsoft.Win32.SafeHandles.SafeWaitHandle value) { } } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public delegate void WaitOrTimerCallback(object state, bool timedOut); } namespace System.Threading.Tasks { [System.Diagnostics.DebuggerDisplayAttribute("Concurrent={ConcurrentTaskCountForDebugger}, Exclusive={ExclusiveTaskCountForDebugger}, Mode={ModeForDebugger}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Threading.Tasks.ConcurrentExclusiveSchedulerPair.DebugView")] public partial class ConcurrentExclusiveSchedulerPair { public ConcurrentExclusiveSchedulerPair() { } public ConcurrentExclusiveSchedulerPair(System.Threading.Tasks.TaskScheduler taskScheduler) { } public ConcurrentExclusiveSchedulerPair(System.Threading.Tasks.TaskScheduler taskScheduler, int maxConcurrencyLevel) { } public ConcurrentExclusiveSchedulerPair(System.Threading.Tasks.TaskScheduler taskScheduler, int maxConcurrencyLevel, int maxItemsPerTask) { } public System.Threading.Tasks.Task Completion { get { throw null; } } public System.Threading.Tasks.TaskScheduler ConcurrentScheduler { get { throw null; } } public System.Threading.Tasks.TaskScheduler ExclusiveScheduler { get { throw null; } } public void Complete() { } } public static partial class Parallel { public static System.Threading.Tasks.ParallelLoopResult For(int fromInclusive, int toExclusive, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(int fromInclusive, int toExclusive, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(int fromInclusive, int toExclusive, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(int fromInclusive, int toExclusive, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(long fromInclusive, long toExclusive, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(long fromInclusive, long toExclusive, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(long fromInclusive, long toExclusive, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(long fromInclusive, long toExclusive, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.OrderablePartitioner source, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.OrderablePartitioner source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.Partitioner source, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.Partitioner source, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.Partitioner source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.Partitioner source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action body) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.OrderablePartitioner source, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.OrderablePartitioner source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.Partitioner source, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Concurrent.Partitioner source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult ForEach(System.Collections.Generic.IEnumerable source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(int fromInclusive, int toExclusive, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(int fromInclusive, int toExclusive, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(long fromInclusive, long toExclusive, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static System.Threading.Tasks.ParallelLoopResult For(long fromInclusive, long toExclusive, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func localInit, System.Func body, System.Action localFinally) { throw null; } public static void Invoke(params System.Action[] actions) { } public static void Invoke(System.Threading.Tasks.ParallelOptions parallelOptions, params System.Action[] actions) { } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct ParallelLoopResult { private int _dummyPrimitive; public bool IsCompleted { get { throw null; } } public System.Nullable LowestBreakIteration { get { throw null; } } } [System.Diagnostics.DebuggerDisplayAttribute("ShouldExitCurrentIteration = {ShouldExitCurrentIteration}")] public partial class ParallelLoopState { internal ParallelLoopState() { } public bool IsExceptional { get { throw null; } } public bool IsStopped { get { throw null; } } public System.Nullable LowestBreakIteration { get { throw null; } } public bool ShouldExitCurrentIteration { get { throw null; } } public void Break() { } public void Stop() { } } public partial class ParallelOptions { public ParallelOptions() { } public System.Threading.CancellationToken CancellationToken { get { throw null; } set { } } public int MaxDegreeOfParallelism { get { throw null; } set { } } public System.Threading.Tasks.TaskScheduler TaskScheduler { get { throw null; } set { } } } [System.Diagnostics.DebuggerDisplayAttribute("Id = {Id}, Status = {Status}, Method = {DebuggerDisplayMethodDescription}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Threading.Tasks.SystemThreadingTasks_TaskDebugView")] public partial class Task : System.IAsyncResult, System.IDisposable { public Task(System.Action action) { } public Task(System.Action action, System.Threading.CancellationToken cancellationToken) { } public Task(System.Action action, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) { } public Task(System.Action action, System.Threading.Tasks.TaskCreationOptions creationOptions) { } public Task(System.Action action, object state) { } public Task(System.Action action, object state, System.Threading.CancellationToken cancellationToken) { } public Task(System.Action action, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) { } public Task(System.Action action, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { } public object AsyncState { get { throw null; } } public static System.Threading.Tasks.Task CompletedTask { get { throw null; } } public System.Threading.Tasks.TaskCreationOptions CreationOptions { get { throw null; } } public static System.Nullable CurrentId { get { throw null; } } public System.AggregateException Exception { get { throw null; } } public static System.Threading.Tasks.TaskFactory Factory { get { throw null; } } public int Id { get { throw null; } } public bool IsCanceled { get { throw null; } } public bool IsCompleted { get { throw null; } } public bool IsCompletedSuccessfully { get { throw null; } } public bool IsFaulted { get { throw null; } } public System.Threading.Tasks.TaskStatus Status { get { throw null; } } System.Threading.WaitHandle System.IAsyncResult.AsyncWaitHandle { get { throw null; } } bool System.IAsyncResult.CompletedSynchronously { get { throw null; } } public System.Runtime.CompilerServices.ConfiguredTaskAwaitable ConfigureAwait(bool continueOnCapturedContext) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, object state) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, object state, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, object state, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, object state, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action continuationAction, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, object state) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, object state, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, object state, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, object state, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func continuationFunction, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public static System.Threading.Tasks.Task CreateUnwrapPromise(System.Threading.Tasks.Task outerTask, bool lookForOce) { throw null; } public static System.Threading.Tasks.Task Delay(int millisecondsDelay) { throw null; } public static System.Threading.Tasks.Task Delay(int millisecondsDelay, System.Threading.CancellationToken cancellationToken) { throw null; } public static System.Threading.Tasks.Task Delay(System.TimeSpan delay) { throw null; } public static System.Threading.Tasks.Task Delay(System.TimeSpan delay, System.Threading.CancellationToken cancellationToken) { throw null; } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public static System.Threading.Tasks.Task FromCanceled(System.Threading.CancellationToken cancellationToken) { throw null; } public static System.Threading.Tasks.Task FromCanceled(System.Threading.CancellationToken cancellationToken) { throw null; } public static System.Threading.Tasks.Task FromException(System.Exception exception) { throw null; } public static System.Threading.Tasks.Task FromException(System.Exception exception) { throw null; } public static System.Threading.Tasks.Task FromResult(TResult result) { throw null; } public System.Runtime.CompilerServices.TaskAwaiter GetAwaiter() { throw null; } public void MarkAborted(System.Threading.ThreadAbortException e) { } public static System.Threading.Tasks.Task Run(System.Action action) { throw null; } public static System.Threading.Tasks.Task Run(System.Action action, System.Threading.CancellationToken cancellationToken) { throw null; } public static System.Threading.Tasks.Task Run(System.Func function) { throw null; } public static System.Threading.Tasks.Task Run(System.Func function, System.Threading.CancellationToken cancellationToken) { throw null; } public void RunSynchronously() { } public void RunSynchronously(System.Threading.Tasks.TaskScheduler scheduler) { } public static System.Threading.Tasks.Task Run(System.Func> function) { throw null; } public static System.Threading.Tasks.Task Run(System.Func> function, System.Threading.CancellationToken cancellationToken) { throw null; } public static System.Threading.Tasks.Task Run(System.Func function) { throw null; } public static System.Threading.Tasks.Task Run(System.Func function, System.Threading.CancellationToken cancellationToken) { throw null; } public void Start() { } public void Start(System.Threading.Tasks.TaskScheduler scheduler) { } public void Wait() { } public bool Wait(int millisecondsTimeout) { throw null; } public bool Wait(int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; } public void Wait(System.Threading.CancellationToken cancellationToken) { } public bool Wait(System.TimeSpan timeout) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static void WaitAll(params System.Threading.Tasks.Task[] tasks) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static bool WaitAll(System.Threading.Tasks.Task[] tasks, int millisecondsTimeout) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static bool WaitAll(System.Threading.Tasks.Task[] tasks, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static void WaitAll(System.Threading.Tasks.Task[] tasks, System.Threading.CancellationToken cancellationToken) { } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static bool WaitAll(System.Threading.Tasks.Task[] tasks, System.TimeSpan timeout) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static int WaitAny(params System.Threading.Tasks.Task[] tasks) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static int WaitAny(System.Threading.Tasks.Task[] tasks, int millisecondsTimeout) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static int WaitAny(System.Threading.Tasks.Task[] tasks, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static int WaitAny(System.Threading.Tasks.Task[] tasks, System.Threading.CancellationToken cancellationToken) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoOptimization)]public static int WaitAny(System.Threading.Tasks.Task[] tasks, System.TimeSpan timeout) { throw null; } public static System.Threading.Tasks.Task WhenAll(System.Collections.Generic.IEnumerable tasks) { throw null; } public static System.Threading.Tasks.Task WhenAll(params System.Threading.Tasks.Task[] tasks) { throw null; } public static System.Threading.Tasks.Task WhenAll(System.Collections.Generic.IEnumerable> tasks) { throw null; } public static System.Threading.Tasks.Task WhenAll(params System.Threading.Tasks.Task[] tasks) { throw null; } public static System.Threading.Tasks.Task WhenAny(System.Collections.Generic.IEnumerable tasks) { throw null; } public static System.Threading.Tasks.Task WhenAny(params System.Threading.Tasks.Task[] tasks) { throw null; } public static System.Threading.Tasks.Task> WhenAny(System.Collections.Generic.IEnumerable> tasks) { throw null; } public static System.Threading.Tasks.Task> WhenAny(params System.Threading.Tasks.Task[] tasks) { throw null; } public static System.Runtime.CompilerServices.YieldAwaitable Yield() { throw null; } } [System.SerializableAttribute] public partial class TaskCanceledException : System.OperationCanceledException { public TaskCanceledException() { } protected TaskCanceledException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TaskCanceledException(string message) { } public TaskCanceledException(string message, System.Exception innerException) { } public TaskCanceledException(string message, System.Exception innerException, System.Threading.CancellationToken token) { } public TaskCanceledException(System.Threading.Tasks.Task task) { } public System.Threading.Tasks.Task Task { get { throw null; } } } public partial class TaskCompletionSource { public TaskCompletionSource() { } public TaskCompletionSource(object state) { } public TaskCompletionSource(object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { } public TaskCompletionSource(System.Threading.Tasks.TaskCreationOptions creationOptions) { } public System.Threading.Tasks.Task Task { get { throw null; } } public void SetCanceled() { } public void SetException(System.Collections.Generic.IEnumerable exceptions) { } public void SetException(System.Exception exception) { } public void SetResult(TResult result) { } public bool TrySetCanceled() { throw null; } public bool TrySetCanceled(System.Threading.CancellationToken cancellationToken) { throw null; } public bool TrySetException(System.Collections.Generic.IEnumerable exceptions) { throw null; } public bool TrySetException(System.Exception exception) { throw null; } public bool TrySetResult(TResult result) { throw null; } } [System.FlagsAttribute] public enum TaskContinuationOptions { AttachedToParent = 4, DenyChildAttach = 8, ExecuteSynchronously = 524288, HideScheduler = 16, LazyCancellation = 32, LongRunning = 2, None = 0, NotOnCanceled = 262144, NotOnFaulted = 131072, NotOnRanToCompletion = 65536, OnlyOnCanceled = 196608, OnlyOnFaulted = 327680, OnlyOnRanToCompletion = 393216, PreferFairness = 1, RunContinuationsAsynchronously = 64, } [System.FlagsAttribute] public enum TaskCreationOptions { AttachedToParent = 4, DenyChildAttach = 8, HideScheduler = 16, LongRunning = 2, None = 0, PreferFairness = 1, RunContinuationsAsynchronously = 64, } public partial class TaskFactory { public TaskFactory() { } public TaskFactory(System.Threading.CancellationToken cancellationToken) { } public TaskFactory(System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { } public TaskFactory(System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { } public TaskFactory(System.Threading.Tasks.TaskScheduler scheduler) { } public System.Threading.CancellationToken CancellationToken { get { throw null; } } public System.Threading.Tasks.TaskContinuationOptions ContinuationOptions { get { throw null; } } public System.Threading.Tasks.TaskCreationOptions CreationOptions { get { throw null; } } public System.Threading.Tasks.TaskScheduler Scheduler { get { throw null; } } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action continuationAction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action continuationAction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action continuationAction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action continuationAction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action[]> continuationAction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action[]> continuationAction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action[]> continuationAction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Action[]> continuationAction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action continuationAction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action continuationAction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action continuationAction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action continuationAction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action> continuationAction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action> continuationAction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action> continuationAction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Action> continuationAction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Action endMethod) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Action endMethod, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Action endMethod, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, TArg1 arg1, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, TArg1 arg1, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Func endMethod) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Func endMethod, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Func endMethod, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, TArg1 arg1, TArg2 arg2, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, TArg1 arg1, TArg2 arg2, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, TArg1 arg1, TArg2 arg2, TArg3 arg3, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Action endMethod, TArg1 arg1, TArg2 arg2, TArg3 arg3, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, TArg3 arg3, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, TArg3 arg3, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action, object state) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action, object state, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task StartNew(System.Action action, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } } public partial class TaskFactory { public TaskFactory() { } public TaskFactory(System.Threading.CancellationToken cancellationToken) { } public TaskFactory(System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { } public TaskFactory(System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { } public TaskFactory(System.Threading.Tasks.TaskScheduler scheduler) { } public System.Threading.CancellationToken CancellationToken { get { throw null; } } public System.Threading.Tasks.TaskContinuationOptions ContinuationOptions { get { throw null; } } public System.Threading.Tasks.TaskCreationOptions CreationOptions { get { throw null; } } public System.Threading.Tasks.TaskScheduler Scheduler { get { throw null; } } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAll(System.Threading.Tasks.Task[] tasks, System.Func[], TResult> continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWhenAny(System.Threading.Tasks.Task[] tasks, System.Func, TResult> continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Func endMethod) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Func endMethod, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.IAsyncResult asyncResult, System.Func endMethod, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, TArg3 arg3, object state) { throw null; } public System.Threading.Tasks.Task FromAsync(System.Func beginMethod, System.Func endMethod, TArg1 arg1, TArg2 arg2, TArg3 arg3, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task StartNew(System.Func function, System.Threading.Tasks.TaskCreationOptions creationOptions) { throw null; } } [System.Diagnostics.DebuggerDisplayAttribute("Id={Id}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Threading.Tasks.TaskScheduler.SystemThreadingTasks_TaskSchedulerDebugView")] public abstract partial class TaskScheduler { protected TaskScheduler() { } public static System.Threading.Tasks.TaskScheduler Current { get { throw null; } } public static System.Threading.Tasks.TaskScheduler Default { get { throw null; } } public int Id { get { throw null; } } public virtual int MaximumConcurrencyLevel { get { throw null; } } public static event System.EventHandler UnobservedTaskException { add { } remove { } } public static System.Threading.Tasks.TaskScheduler FromCurrentSynchronizationContext() { throw null; } protected abstract System.Collections.Generic.IEnumerable GetScheduledTasks(); protected internal abstract void QueueTask(System.Threading.Tasks.Task task); protected internal virtual bool TryDequeue(System.Threading.Tasks.Task task) { throw null; } protected bool TryExecuteTask(System.Threading.Tasks.Task task) { throw null; } protected abstract bool TryExecuteTaskInline(System.Threading.Tasks.Task task, bool taskWasPreviouslyQueued); } [System.SerializableAttribute] public partial class TaskSchedulerException : System.Exception { public TaskSchedulerException() { } public TaskSchedulerException(System.Exception innerException) { } protected TaskSchedulerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public TaskSchedulerException(string message) { } public TaskSchedulerException(string message, System.Exception innerException) { } } public enum TaskStatus { Canceled = 6, Created = 0, Faulted = 7, RanToCompletion = 5, Running = 3, WaitingForActivation = 1, WaitingForChildrenToComplete = 4, WaitingToRun = 2, } [System.Diagnostics.DebuggerDisplayAttribute("Id = {Id}, Status = {Status}, Method = {DebuggerDisplayMethodDescription}, Result = {DebuggerDisplayResultDescription}")] [System.Diagnostics.DebuggerTypeProxyAttribute("System.Threading.Tasks.SystemThreadingTasks_FutureDebugView")] public partial class Task : System.Threading.Tasks.Task { public Task(System.Func function, object state) : base (default(System.Action)) { } public Task(System.Func function, object state, System.Threading.CancellationToken cancellationToken) : base (default(System.Action)) { } public Task(System.Func function, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) : base (default(System.Action)) { } public Task(System.Func function, object state, System.Threading.Tasks.TaskCreationOptions creationOptions) : base (default(System.Action)) { } public Task(System.Func function) : base (default(System.Action)) { } public Task(System.Func function, System.Threading.CancellationToken cancellationToken) : base (default(System.Action)) { } public Task(System.Func function, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) : base (default(System.Action)) { } public Task(System.Func function, System.Threading.Tasks.TaskCreationOptions creationOptions) : base (default(System.Action)) { } public static new System.Threading.Tasks.TaskFactory Factory { get { throw null; } } [System.Diagnostics.DebuggerBrowsableAttribute(System.Diagnostics.DebuggerBrowsableState.Never)] public TResult Result { get { throw null; } } public new System.Runtime.CompilerServices.ConfiguredTaskAwaitable ConfigureAwait(bool continueOnCapturedContext) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action, object> continuationAction, object state) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action, object> continuationAction, object state, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action, object> continuationAction, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action, object> continuationAction, object state, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action, object> continuationAction, object state, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action> continuationAction) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action> continuationAction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action> continuationAction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action> continuationAction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Action> continuationAction, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, object, TNewResult> continuationFunction, object state) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, object, TNewResult> continuationFunction, object state, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, object, TNewResult> continuationFunction, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, object, TNewResult> continuationFunction, object state, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, object, TNewResult> continuationFunction, object state, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, TNewResult> continuationFunction) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, TNewResult> continuationFunction, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, TNewResult> continuationFunction, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, TNewResult> continuationFunction, System.Threading.Tasks.TaskContinuationOptions continuationOptions) { throw null; } public System.Threading.Tasks.Task ContinueWith(System.Func, TNewResult> continuationFunction, System.Threading.Tasks.TaskScheduler scheduler) { throw null; } public new System.Runtime.CompilerServices.TaskAwaiter GetAwaiter() { throw null; } } public partial class UnobservedTaskExceptionEventArgs : System.EventArgs { public UnobservedTaskExceptionEventArgs(System.AggregateException exception) { } public System.AggregateException Exception { get { throw null; } } public bool Observed { get { throw null; } } public void SetObserved() { } } [System.Runtime.CompilerServices.AsyncMethodBuilderAttribute(typeof(System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder))] public readonly partial struct ValueTask : System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ValueTask(System.Threading.Tasks.Sources.IValueTaskSource source, short token) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ValueTask(System.Threading.Tasks.Task task) { throw null; } public bool IsCanceled { get { throw null; } } public bool IsCompleted { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public bool IsCompletedSuccessfully { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public bool IsFaulted { get { throw null; } } public System.Threading.Tasks.Task AsTask() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable ConfigureAwait(bool continueOnCapturedContext) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.Threading.Tasks.ValueTask other) { throw null; } public System.Runtime.CompilerServices.ValueTaskAwaiter GetAwaiter() { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Threading.Tasks.ValueTask left, System.Threading.Tasks.ValueTask right) { throw null; } public static bool operator !=(System.Threading.Tasks.ValueTask left, System.Threading.Tasks.ValueTask right) { throw null; } public System.Threading.Tasks.ValueTask Preserve() { throw null; } } [System.Runtime.CompilerServices.AsyncMethodBuilderAttribute(typeof(System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder))] public readonly partial struct ValueTask : System.IEquatable> { internal readonly TResult _result; private readonly object _dummy; private readonly int _dummyPrimitive; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ValueTask(System.Threading.Tasks.Sources.IValueTaskSource source, short token) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ValueTask(System.Threading.Tasks.Task task) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public ValueTask(TResult result) { throw null; } public bool IsCanceled { get { throw null; } } public bool IsCompleted { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public bool IsCompletedSuccessfully { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public bool IsFaulted { get { throw null; } } public TResult Result { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]get { throw null; } } public System.Threading.Tasks.Task AsTask() { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable ConfigureAwait(bool continueOnCapturedContext) { throw null; } public override bool Equals(object obj) { throw null; } public bool Equals(System.Threading.Tasks.ValueTask other) { throw null; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]public System.Runtime.CompilerServices.ValueTaskAwaiter GetAwaiter() { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(System.Threading.Tasks.ValueTask left, System.Threading.Tasks.ValueTask right) { throw null; } public static bool operator !=(System.Threading.Tasks.ValueTask left, System.Threading.Tasks.ValueTask right) { throw null; } public System.Threading.Tasks.ValueTask Preserve() { throw null; } public override string ToString() { throw null; } } } namespace System.Threading.Tasks.Sources { public partial interface IValueTaskSource { void GetResult(short token); System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(short token); void OnCompleted(System.Action continuation, object state, short token, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags flags); } public partial interface IValueTaskSource { TResult GetResult(short token); System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(short token); void OnCompleted(System.Action continuation, object state, short token, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags flags); } public partial struct ManualResetValueTaskSourceCore { private TResult _result; private object _dummy; private int _dummyPrimitive; public bool RunContinuationsAsynchronously { get { throw null; } set { } } public short Version { get { throw null; } } public TResult GetResult(short token) { throw null; } public System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(short token) { throw null; } public void OnCompleted(System.Action continuation, object state, short token, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags flags) { } public void Reset() { } public void SetException(System.Exception error) { } public void SetResult(TResult result) { } } [System.FlagsAttribute] public enum ValueTaskSourceOnCompletedFlags { FlowExecutionContext = 2, None = 0, UseSchedulingContext = 1, } public enum ValueTaskSourceStatus { Canceled = 3, Faulted = 2, Pending = 0, Succeeded = 1, } }